mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 05:49:27 +00:00
Manually update generated VHAL libs to backport PER_DISPLAY_MAX_BRIGHTNESS. This is required otherwise it will be filtered out at DefaultVehicleHal layer if v3 version lib is used. Flag: EXEMPT HAL change Test: Manual test, verify PER_DISPLAY_MAX_BRIGHTNESS is not filtered. Bug: 361417708 Change-Id: I86f66ed8a9c775e03d7ad65b83d370c97dd38e76
27 lines
990 B
C++
27 lines
990 B
C++
/*
|
|
* Copyright (C) 2024 The Android Open Source Project
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <aidl/android/hardware/automotive/vehicle/VehicleProperty.h>
|
|
|
|
namespace aidl::android::hardware::automotive::vehicle {
|
|
|
|
// Same as VehicleProperty::PER_DISPLAY_MAX_BRIGHTNESS as defined in v4.
|
|
static constexpr VehicleProperty PER_DISPLAY_MAX_BRIGHTNESS = (VehicleProperty)0x11410F4E;
|
|
|
|
} // namespace aidl::android::hardware::automotive::vehicle
|