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