1# Copyright (C) 2018 The Android Open Source Project 2# 3# Licensed under the Apache License, Version 2.0 (the "License"); 4# you may not use this file except in compliance with the License. 5# You may obtain a copy of the License at 6# 7# http://www.apache.org/licenses/LICENSE-2.0 8# 9# Unless required by applicable law or agreed to in writing, software 10# distributed under the License is distributed on an "AS IS" BASIS, 11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12# See the License for the specific language governing permissions and 13# limitations under the License. 14 15module: "android.sysprop.DisplayProperties" 16owner: Platform 17 18prop { 19 api_name: "debug_force_msaa" 20 type: Boolean 21 scope: Internal 22 access: ReadWrite 23 prop_name: "debug.egl.force_msaa" 24} 25 26prop { 27 api_name: "debug_opengl_trace" 28 type: String 29 scope: Internal 30 access: ReadWrite 31 prop_name: "debug.egl.trace" 32} 33 34# Developer setting to force RTL layout. 35prop { 36 api_name: "debug_force_rtl" 37 type: Boolean 38 scope: Internal 39 access: ReadWrite 40 prop_name: "debug.force_rtl" 41} 42 43# When set to true, apps will draw debugging information about their layouts. 44prop { 45 api_name: "debug_layout" 46 type: Boolean 47 scope: Internal 48 access: ReadWrite 49 prop_name: "debug.layout" 50}