Home
last modified time | relevance | path

Searched refs:physicalScreen (Results 1 – 9 of 9) sorted by relevance

/OK3568_Linux_fs/external/xserver/hw/dmx/
H A Ddmx.c180 attr->physicalScreen = value; in dmxSetInputAttribute()
340 if (stuff->physicalScreen < 0 in ProcDMXGetScreenAttributes()
341 || stuff->physicalScreen >= dmxGetNumScreens()) in ProcDMXGetScreenAttributes()
344 if (!dmxGetScreenAttributes(stuff->physicalScreen, &attr)) in ProcDMXGetScreenAttributes()
489 dmxGetScreenAttributes(stuff->physicalScreen, &attr); in ProcDMXAddScreen()
499 status = dmxAttachScreen(stuff->physicalScreen, &attr); in ProcDMXAddScreen()
508 .physicalScreen = stuff->physicalScreen in ProcDMXAddScreen()
514 swapl(&rep.physicalScreen); in ProcDMXAddScreen()
529 status = dmxDetachScreen(stuff->physicalScreen); in ProcDMXRemoveScreen()
818 .physicalScreen = attr.physicalScreen, in ProcDMXGetInputAttributes()
[all …]
H A Ddmxextension.h83 int physicalScreen; member
H A Ddmxextension.c209 attr->physicalScreen = -1; in dmxGetInputAttributes()
224 attr->physicalScreen = dmxInput->scrnIdx; in dmxGetInputAttributes()
272 retcode = dmxInputAttachBackend(attr->physicalScreen, in dmxAddInput()
/OK3568_Linux_fs/external/xserver/hw/dmx/doc/
H A DDMXSpec.txt151 physicalScreen: CARD32
174 The physicalScreen value is between 0 and screenCount-1, inclusive
182 typically 0 for all values of physicalScreen. If Xinerama is in
251 physicalScreen: CARD32
256 physicalScreen: CARD32
262 This request re-attaches the back-end physicalScreen to the Xdmx
267 physicalScreen must be correct for this request to work.
288 On success, status will be 0 and physicalScreen will contain the new
293 * the value of physicalScreen is out of range
294 * physicalScreen has not been detached (with DMXRemoveScreen)
[all …]
H A DDMXSpec-v1.txt97 physicalScreen: CARD32
111 The physicalScreen value is between 0 and screenCount-1, inclusive
121 typically 0 for all values of physicalScreen. If Xinerama is in
207 physicalScreen: CARD32
232 For console devices, the physicalScreen and physicalID will be
236 For back-end devices, the physicalScreen will identify the back-end
342 4 CARD32 physicalScreen
400 4 CARD32 physicalScreen
/OK3568_Linux_fs/external/xserver/hw/dmx/input/
H A Ddmxinputinit.c1322 dmxInputAttachBackend(int physicalScreen, int isCore, int *id) in dmxInputAttachBackend() argument
1328 if (physicalScreen < 0 || physicalScreen >= dmxNumScreens) in dmxInputAttachBackend()
1332 if (dmxInput->scrnIdx != -1 && dmxInput->scrnIdx == physicalScreen) { in dmxInputAttachBackend()
1336 dmxScreen = &dmxScreens[physicalScreen]; in dmxInputAttachBackend()
1344 dmxScreen = &dmxScreens[physicalScreen]; in dmxInputAttachBackend()
H A Ddmxinputinit.h282 extern int dmxInputAttachBackend(int physicalScreen, int isCore, int *id);
/OK3568_Linux_fs/external/xserver/hw/dmx/examples/
H A Ddmxinfo.c242 i, iinfo.name, iinfo.physicalId, iinfo.physicalScreen, in main()
H A Dxinput.c111 printf("backend o%d/%s", iinf.physicalScreen, iinf.name); in printdmxinfo()