OSDN Git Service

Delete the output buffer when it is same as output_handle_
[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 PANORAMA="false"
8
9 # The Order of Physical Displays. This along with connection status
10 # will be used to determine the order. If display is first in this
11 # list but is not connected than it will added to the last.The order
12 # is preserved till the next reboot.
13 PHYSICAL_DISPLAY="0:1:2"
14
15 # Rotation of display, with format "physical-display-number:rotation".
16 # physical-display-number: start from 0, included all display ports(whatever connected or disconnected)
17 # rotation: Rotation which needs to be applied. Check HWCRotation in public/hwcdefs.h
18 PHYSICAL_DISPLAY_ROTATION="1:1"
19
20 # Logical display definitions, with format "physical-display-number:split-number"
21 # physical-display-number: start from 0, included all display ports(whatever connected or disconnected)
22 # split-number: the sub display number you want to split
23 LOGICAL_DISPLAY="0:3"
24
25 # Mosaic display definitions, with format "sub-display-index+sub-display-index+sub-display-index....."
26 # sub-display-index: start from 0, should be the available displays number, follow the order of the connected logical displays
27 MOSAIC_DISPLAY="0+1+2"
28
29 # Panorama display definitions, with format "sub-display-index+sub-display-index+sub-display-index....."
30 # sub-display-index: start from 0, should be the available displays number, follow the order of the connected logical displays
31 PANORAMA_DISPLAY="0+"
32 # Panorama SOS display defines the display index started in SOS side for servering display sharing request from AaaG.
33 PANORAMA_SOS_DISPLAY="2+"
34
35 # Clone display definitions, with format "physical-display-number:cloned-physical-display-number". This
36 # setting is ignored if LOGICAL or MOSAIC is set to true.
37 # physical-display-number: start from 0, included all display ports(whatever connected or disconnected)
38 # cloned-physical-display-number: the display which should clone physical-display-number.
39 CLONE_DISPLAY="1+2"
40
41
42 # ------------------------------------------------------------------------------------------------------------------------
43 # A typical usages:
44 #   there are 3 physical displays(ports? crtc? pipe?), the first one and third one are connected, the second one is disconnected
45 #   use:
46 #       LOGICAL_DISPLAY="0:3"
47 #       LOGICAL_DISPLAY="1:2"
48 #   to split the physical displays, the final logical displays number will be "0, 1, 2, 3, 4, 5", "3, 4" belongs to
49 #   second physical display and is disconnected, so available displays number are "0, 1, 2, 5"
50 #   use:
51 #       MOSAIC_DISPLAY="2+5"
52 #       MOSAIC_DISPLAY="0+3+4"
53 #   the final mosaic display will be (keep the order by the smallest logical display num):
54 #       MOSAIC_DISPLAY 0: includes 1 logical display(logical display 0) only
55 #       MOSAIC_DISPLAY 1: includes 2 and 5 logical displays (5 is the third physical display without split displays)
56 #   the logical display 1 is not used for mosaic display, will be second display of the final available display.
57 # ------------------------------------------------------------------------------------------------------------------------