1 /*
2  * Copyright 2019 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 #ifndef SURFACEFLINGERPROPERTIES_H_
18 #define SURFACEFLINGERPROPERTIES_H_
19 
20 #include <SurfaceFlingerProperties.sysprop.h>
21 #include <android/hardware/configstore/1.1/ISurfaceFlingerConfigs.h>
22 #include <android/hardware/graphics/common/1.2/types.h>
23 #include <ui/ConfigStoreTypes.h>
24 
25 #include <cstdint>
26 #include <optional>
27 #include <vector>
28 
29 namespace android {
30 namespace sysprop {
31 
32 int64_t vsync_event_phase_offset_ns(int64_t defaultValue);
33 
34 int64_t vsync_sf_event_phase_offset_ns(int64_t defaultValue);
35 
36 bool use_context_priority(bool defaultValue);
37 
38 int64_t max_frame_buffer_acquired_buffers(int64_t defaultValue);
39 
40 int32_t max_graphics_width(int32_t defaultValue);
41 int32_t max_graphics_height(int32_t defaultValue);
42 
43 bool has_wide_color_display(bool defaultValue);
44 
45 bool running_without_sync_framework(bool defaultValue);
46 
47 bool has_HDR_display(bool defaultValue);
48 
49 int64_t present_time_offset_from_vsync_ns(int64_t defaultValue);
50 
51 bool force_hwc_copy_for_virtual_displays(bool defaultValue);
52 
53 int64_t max_virtual_display_dimension(int64_t defaultValue);
54 
55 bool use_vr_flinger(bool defaultValue);
56 
57 bool start_graphics_allocator_service(bool defaultValue);
58 
59 SurfaceFlingerProperties::primary_display_orientation_values primary_display_orientation(
60         SurfaceFlingerProperties::primary_display_orientation_values defaultValue);
61 
62 bool use_color_management(bool defaultValue);
63 
64 int64_t default_composition_dataspace(
65         android::hardware::graphics::common::V1_2::Dataspace defaultValue);
66 
67 int32_t default_composition_pixel_format(
68         android::hardware::graphics::common::V1_2::PixelFormat defaultValue);
69 
70 int64_t wcg_composition_dataspace(
71         android::hardware::graphics::common::V1_2::Dataspace defaultValue);
72 
73 int32_t wcg_composition_pixel_format(
74         android::hardware::graphics::common::V1_2::PixelFormat defaultValue);
75 
76 int64_t color_space_agnostic_dataspace(
77         android::hardware::graphics::common::V1_2::Dataspace defaultValue);
78 
79 bool refresh_rate_switching(bool defaultValue);
80 
81 int32_t set_idle_timer_ms(int32_t defaultValue);
82 
83 int32_t set_touch_timer_ms(int32_t defaultValue);
84 
85 int32_t set_display_power_timer_ms(int32_t defaultValue);
86 
87 bool use_content_detection_for_refresh_rate(bool defaultValue);
88 
89 bool enable_protected_contents(bool defaultValue);
90 
91 bool support_kernel_idle_timer(bool defaultValue);
92 
93 bool use_frame_rate_api(bool defaultValue);
94 
95 int32_t display_update_imminent_timeout_ms(int32_t defaultValue);
96 
97 android::ui::DisplayPrimaries getDisplayNativePrimaries();
98 } // namespace sysprop
99 } // namespace android
100 #endif // SURFACEFLINGERPROPERTIES_H_
101