OSDN Git Service

02564eea1fa8ff4c800068a19ebcc586a5704df4
[android-x86/external-IA-Hardware-Composer.git] / hwc_display_virt.ini
1 # The switches of logical and mosaic mode.
2
3 LOGICAL="false"
4 MOSAIC="false"
5 CLONE="false"
6 ROTATION="false"
7
8 # The Order of Physical Displays. This along with connection status
9 # will be used to determine the order. If display is first in this
10 # list but is not connected than it will added to the last.The order
11 # is preserved till the next reboot.
12 PHYSICAL_DISPLAY="0:1:2"
13
14 # Rotation of display, with format "physical-display-number:rotation".
15 # physical-display-number: start from 0, included all display ports(whatever connected or disconnected)
16 # rotation: Rotation which needs to be applied. Check HWCRotation in public/hwcdefs.h
17 PHYSICAL_DISPLAY_ROTATION="1:1"
18
19 # Logical display definitions, with format "physical-display-number:split-number"
20 # physical-display-number: start from 0, included all display ports(whatever connected or disconnected)
21 # split-number: the sub display number you want to split
22 LOGICAL_DISPLAY="0:3"
23
24 # Mosaic display definitions, with format "sub-display-index+sub-display-index+sub-display-index....."
25 # sub-display-index: start from 0, should be the available displays number, follow the order of the connected logical displays
26 MOSAIC_DISPLAY="0+1+2"
27
28 # Clone display definitions, with format "physical-display-number:cloned-physical-display-number". This
29 # setting is ignored if LOGICAL or MOSAIC is set to true.
30 # physical-display-number: start from 0, included all display ports(whatever connected or disconnected)
31 # cloned-physical-display-number: the display which should clone physical-display-number.
32 CLONE_DISPLAY="1+2"
33
34
35 # ------------------------------------------------------------------------------------------------------------------------
36 # A typical usages:
37 #   there are 3 physical displays(ports? crtc? pipe?), the first one and third one are connected, the second one is disconnected
38 #   use:
39 #       LOGICAL_DISPLAY="0:3"
40 #       LOGICAL_DISPLAY="1:2"
41 #   to split the physical displays, the final logical displays number will be "0, 1, 2, 3, 4, 5", "3, 4" belongs to
42 #   second physical display and is disconnected, so available displays number are "0, 1, 2, 5"
43 #   use:
44 #       MOSAIC_DISPLAY="2+5"
45 #       MOSAIC_DISPLAY="0+3+4"
46 #   the final mosaic display will be (keep the order by the smallest logical display num):
47 #       MOSAIC_DISPLAY 0: includes 1 logical display(logical display 0) only
48 #       MOSAIC_DISPLAY 1: includes 2 and 5 logical displays (5 is the third physical display without split displays)
49 #   the logical display 1 is not used for mosaic display, will be second display of the final available display.
50 # ------------------------------------------------------------------------------------------------------------------------