2006-09-11 22:49:15 -07:00
|
|
|
|
The X Resize, Rotate and Reflect Extension
|
randr: add provider object (v8)
A provider object represents a GPU or virtual device that provides
rendering or output services to the X server. This protocol
allow controlling provider objects for output and offload slave devices.
v1.1: fix typo add missing define
v2: rename nProperties back to nAtoms, makes server simpler to c-n-p,
add missing Get request/reply
v3: bring back configure property, no point in diverging from the
output property code without good reason.
also fix typo pointed out on irc by rei4dan.
v3.1: drop cut-n-paste, increase RRNumberRequests
v4: reviewed by Aaron, address comments:
Fix provider error code
add missing notify, remove dri2 references, fix c-n-p issues.
v5: add provider change notify event with current role.
v5.1: fix cut-n-paste
v6:
document flags, fix whitespace, add better errors for SetProviderRoles,
add new events, fix pending language.
v6.1: add missing change notify event struct + missing padding
v7: fix a bunch more tab/spaces, add appendix sections for requests, events
and errors, remove multimaster flag in favour of max master counter,
move some members around to follow other events.
v7.1 fix maxMaster + wrong comment, one whitespace
v7.2 bump to being randr 1.4, fix some too generic names.
v7.3 remove dynamic flag, fix some language
v8 overhaul complete protocol, remove set provider roles, add specific
methods for setting offload sinks and output sources, add a list
of associated providers into the get provider info struct.
Earlier-review-by: Aaron Plattner <aplattner@nvidia.com>
Reviewed-by: Keith Packard <keithp@keithp.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
2012-01-20 17:38:16 +00:00
|
|
|
|
Version 1.4.0
|
|
|
|
|
|
2012-07-03
|
2009-06-05 20:37:24 -07:00
|
|
|
|
|
2006-09-11 22:49:15 -07:00
|
|
|
|
Jim Gettys
|
|
|
|
|
|
Jim.Gettys@hp.com
|
|
|
|
|
|
Cambridge Research Laboratory
|
|
|
|
|
|
HP Labs
|
|
|
|
|
|
Hewlett Packard Company
|
2009-06-05 20:37:24 -07:00
|
|
|
|
|
2006-09-11 22:49:15 -07:00
|
|
|
|
Keith Packard
|
|
|
|
|
|
keith.packard@intel.com
|
|
|
|
|
|
Open Source Technology Center
|
|
|
|
|
|
Intel Corporation
|
2003-11-14 16:48:43 +00:00
|
|
|
|
|
|
|
|
|
|
1. Introduction
|
|
|
|
|
|
|
|
|
|
|
|
The X Resize, Rotate and Reflect Extension, called RandR for short,
|
|
|
|
|
|
brings the ability to resize, rotate and reflect the root window of a
|
2006-09-11 21:29:39 -07:00
|
|
|
|
screen. It is based on the X Resize and Rotate Extension as specified
|
2003-11-14 16:48:43 +00:00
|
|
|
|
in the Proceedings of the 2001 Usenix Technical Conference [RANDR].
|
|
|
|
|
|
|
2006-06-24 16:14:07 -07:00
|
|
|
|
RandR as implemented and integrated into the X server differs in
|
2003-11-14 16:48:43 +00:00
|
|
|
|
one substantial fashion from the design discussed in that paper: that
|
|
|
|
|
|
is, RandR 1.0 does not implement the depth switching described in that
|
|
|
|
|
|
document, and the support described for that in the protocol in that
|
2006-06-24 16:58:16 -07:00
|
|
|
|
document and in the implementation has been removed from the
|
2003-11-14 16:48:43 +00:00
|
|
|
|
protocol described here, as it has been overtaken by events.
|
|
|
|
|
|
|
|
|
|
|
|
These events include:
|
2006-09-11 21:29:39 -07:00
|
|
|
|
► Modern toolkits (in this case, GTK+ 2.x) have progressed to the point
|
2010-12-05 20:30:43 -08:00
|
|
|
|
of implementing migration between screens of arbitrary depths
|
2006-09-11 21:29:39 -07:00
|
|
|
|
► The continued advance of Moore's law has made limited amounts of VRAM
|
2010-12-05 20:30:43 -08:00
|
|
|
|
less of an issue, reducing the pressure to implement depth switching
|
2003-11-14 16:48:43 +00:00
|
|
|
|
on laptops or desktop systems
|
2006-09-11 21:29:39 -07:00
|
|
|
|
► The continued decline of legacy toolkits whose design would have
|
2010-12-05 20:30:43 -08:00
|
|
|
|
required depth switching to support migration
|
2009-06-05 20:37:24 -07:00
|
|
|
|
► The lack of depth switching implementation experience in the
|
2010-12-05 20:30:43 -08:00
|
|
|
|
intervening time, due to events beyond our control
|
2003-11-14 16:48:43 +00:00
|
|
|
|
|
|
|
|
|
|
Additionally, the requirement to support depth switching might
|
|
|
|
|
|
complicate other re-engineering of the device independent part of the
|
|
|
|
|
|
X server that is currently being contemplated.
|
2009-06-05 20:37:24 -07:00
|
|
|
|
|
2006-06-24 16:58:16 -07:00
|
|
|
|
Rather than further delaying RandR's widespread deployment for a feature
|
|
|
|
|
|
long wanted by the community (resizing of screens, particularly on laptops),
|
|
|
|
|
|
or the deployment of a protocol design that might be flawed due to lack of
|
|
|
|
|
|
implementation experience, we decided to remove depth switching from the
|
2006-09-12 18:40:03 -07:00
|
|
|
|
protocol. It may be implemented at a later time if resources and
|
2006-06-24 16:58:16 -07:00
|
|
|
|
interests permit as a revision to the protocol described here, which will
|
2006-09-11 21:29:39 -07:00
|
|
|
|
remain a stable base for applications. The protocol described here has been
|
2006-06-24 16:58:16 -07:00
|
|
|
|
implemented in the main X.org server, and more fully in the hw/kdrive
|
|
|
|
|
|
implementation in the distribution, which fully implements resizing,
|
|
|
|
|
|
rotation and reflection.
|
2003-11-14 16:48:43 +00:00
|
|
|
|
|
2006-06-24 16:14:07 -07:00
|
|
|
|
1.2 Introduction to version 1.2 of the extension
|
|
|
|
|
|
|
|
|
|
|
|
One of the significant limitations found in version 1.1 of the RandR
|
|
|
|
|
|
protocol was the inability to deal with the Xinerama model where multiple
|
|
|
|
|
|
monitors display portions of a common underlying screen. In this environment,
|
2006-09-11 21:29:39 -07:00
|
|
|
|
zero or more video outputs are associated with each CRT controller which
|
|
|
|
|
|
defines both a set of video timings and a 'viewport' within the larger
|
|
|
|
|
|
screen. This viewport is independent of the overall size of the screen, and
|
2009-06-05 20:37:24 -07:00
|
|
|
|
may be located anywhere within the screen.
|
2006-06-24 16:14:07 -07:00
|
|
|
|
|
|
|
|
|
|
The effect is to decouple the reported size of the screen from the size
|
2006-09-11 21:29:39 -07:00
|
|
|
|
presented by each video output, and to permit multiple outputs to present
|
2006-06-24 16:14:07 -07:00
|
|
|
|
information for a single screen.
|
|
|
|
|
|
|
2006-09-11 21:29:39 -07:00
|
|
|
|
To extend RandR for this model, we separate out the output, CRTC and screen
|
2006-06-24 16:14:07 -07:00
|
|
|
|
configuration information and permit them to be configured separately. For
|
|
|
|
|
|
compatibility with the 1.1 version of the protocol, we make the 1.1 requests
|
2006-09-11 21:29:39 -07:00
|
|
|
|
simultaneously affect both the screen and the (presumably sole) CRTC and
|
|
|
|
|
|
output. The set of available outputs are presented with UTF-8 encoded names
|
|
|
|
|
|
and may be connected to CRTCs as permitted by the underlying hardware. CRTC
|
|
|
|
|
|
configuration is now done with full mode information instead of just size
|
|
|
|
|
|
and refresh rate, and these modes have names. These names also use UTF-8
|
|
|
|
|
|
encoding. New modes may also be added by the user.
|
2006-06-24 16:14:07 -07:00
|
|
|
|
|
|
|
|
|
|
Additional requests and events are provided for this new functionality.
|
|
|
|
|
|
|
2006-09-11 21:29:39 -07:00
|
|
|
|
┌────────────────────────────────┬──────────┐
|
|
|
|
|
|
┏━━━━━━━┳───────────────┐ ╔════════╗ ╔════════╗
|
|
|
|
|
|
┃ 1 ┃ │ ║ A ║ ║ B ║
|
|
|
|
|
|
┃ ┏━━━╋━━━━━━━━━━━━━━━┫ ║ ║ ║ ║
|
|
|
|
|
|
┣━━━╋━━━┛ ┃ ╚════════╝ ╚════════╝
|
|
|
|
|
|
│ ┃ 2 ┃─────────────────┐
|
2009-06-05 20:37:24 -07:00
|
|
|
|
│ ┃ ┃ ╔═══════════════════╗
|
2006-09-11 21:29:39 -07:00
|
|
|
|
│ ┃ ┃ ║ ║
|
|
|
|
|
|
│ ┗━━━━━━━━━━━━━━━━━━━┫ ║ C ║
|
|
|
|
|
|
└───────────────────────┘ ║ ║
|
2006-09-11 22:19:28 -07:00
|
|
|
|
┌──────┐ ┏━━━━┓ ╔══════╗ ║ ║
|
|
|
|
|
|
│screen│ ┃CRTC┃ ║output║ ╚═══════════════════╝
|
|
|
|
|
|
└──────┘ ┗━━━━┛ ╚══════╝
|
2006-09-11 21:29:39 -07:00
|
|
|
|
|
|
|
|
|
|
In this picture, the screen is covered (incompletely) by two CRTCs. CRTC1
|
2006-09-11 22:19:28 -07:00
|
|
|
|
is connected to two outputs, A and B. CRTC2 is connected to output C.
|
|
|
|
|
|
Outputs A and B will present exactly the same region of the screen using
|
|
|
|
|
|
the same mode line. Output C will present a different (larger) region of
|
2006-09-11 21:29:39 -07:00
|
|
|
|
the screen using a different mode line.
|
|
|
|
|
|
|
2006-09-11 22:19:28 -07:00
|
|
|
|
RandR provides information about each available CRTC and output; the
|
|
|
|
|
|
connection between CRTC and output is under application control, although
|
2006-09-11 21:29:39 -07:00
|
|
|
|
the hardware will probably impose restrictions on the possible
|
|
|
|
|
|
configurations. The protocol doesn't try to describe these restrictions,
|
|
|
|
|
|
instead it provides a mechanism to find out what combinations are supported.
|
|
|
|
|
|
|
2008-02-15 15:49:35 -08:00
|
|
|
|
1.3 Introduction to version 1.3 of the extension
|
|
|
|
|
|
|
|
|
|
|
|
Version 1.3 builds on the changes made with version 1.2 and adds some new
|
2008-11-24 16:01:55 -08:00
|
|
|
|
capabilities without fundmentally changing the extension again. The
|
|
|
|
|
|
following features are added in this version:
|
|
|
|
|
|
|
|
|
|
|
|
• Projective Transforms. The implementation work for general rotation
|
|
|
|
|
|
support made it trivial to add full projective transformations. These
|
|
|
|
|
|
can be used to scale the screen up/down as well as perform projector
|
|
|
|
|
|
keystone correct or other effects.
|
2008-12-08 14:40:07 +01:00
|
|
|
|
|
|
|
|
|
|
• Panning. It was removed with RandR 1.2 because the old semantics didn't
|
|
|
|
|
|
fit any longer. With RandR 1.3 panning can be specified per crtc.
|
|
|
|
|
|
|
2010-12-05 20:31:18 -08:00
|
|
|
|
1.4 Introduction to version 1.4 of the extension
|
|
|
|
|
|
|
2012-06-25 12:01:03 +01:00
|
|
|
|
Version 1.4 adds an optional Border property.
|
2010-12-05 20:31:18 -08:00
|
|
|
|
|
2011-07-27 22:57:56 -07:00
|
|
|
|
• An optional Border property. This property allows a client to
|
|
|
|
|
|
specify that the viewport of the CRTC is smaller than the active
|
|
|
|
|
|
display region described its mode. This is useful, for example,
|
|
|
|
|
|
for compensating for the overscan behavior of certain
|
|
|
|
|
|
televisions.
|
|
|
|
|
|
|
randr: add provider object (v8)
A provider object represents a GPU or virtual device that provides
rendering or output services to the X server. This protocol
allow controlling provider objects for output and offload slave devices.
v1.1: fix typo add missing define
v2: rename nProperties back to nAtoms, makes server simpler to c-n-p,
add missing Get request/reply
v3: bring back configure property, no point in diverging from the
output property code without good reason.
also fix typo pointed out on irc by rei4dan.
v3.1: drop cut-n-paste, increase RRNumberRequests
v4: reviewed by Aaron, address comments:
Fix provider error code
add missing notify, remove dri2 references, fix c-n-p issues.
v5: add provider change notify event with current role.
v5.1: fix cut-n-paste
v6:
document flags, fix whitespace, add better errors for SetProviderRoles,
add new events, fix pending language.
v6.1: add missing change notify event struct + missing padding
v7: fix a bunch more tab/spaces, add appendix sections for requests, events
and errors, remove multimaster flag in favour of max master counter,
move some members around to follow other events.
v7.1 fix maxMaster + wrong comment, one whitespace
v7.2 bump to being randr 1.4, fix some too generic names.
v7.3 remove dynamic flag, fix some language
v8 overhaul complete protocol, remove set provider roles, add specific
methods for setting offload sinks and output sources, add a list
of associated providers into the get provider info struct.
Earlier-review-by: Aaron Plattner <aplattner@nvidia.com>
Reviewed-by: Keith Packard <keithp@keithp.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
2012-01-20 17:38:16 +00:00
|
|
|
|
Version 1.4 adds a new object called a provider object. A provider object
|
|
|
|
|
|
represents a GPU or virtual device providing services to the X server.
|
|
|
|
|
|
Providers have a set of abilities and a set of possible roles.
|
|
|
|
|
|
|
|
|
|
|
|
Provider objects are used to control multi-GPU systems. Provider roles can
|
|
|
|
|
|
be dynamically configured to provide support for:
|
|
|
|
|
|
|
|
|
|
|
|
1) Output slaving: plug in a USB device, but have its output rendered
|
|
|
|
|
|
using the main GPU. On some dual-GPU laptops, the second GPU isn't
|
|
|
|
|
|
connected to the LVDS panel, so we need to use the first GPU as an output
|
|
|
|
|
|
slave for the second GPU.
|
|
|
|
|
|
|
|
|
|
|
|
2) offload - For dual-GPU laptops, allow direct rendered applications to be run
|
|
|
|
|
|
on the second GPU and display on the first GPU.
|
|
|
|
|
|
|
|
|
|
|
|
3) GPU switching - Allow switching between two GPUs as the main screen
|
|
|
|
|
|
renderer.
|
|
|
|
|
|
|
|
|
|
|
|
4) multiple GPU rendering - This replaces Xinerama.
|
|
|
|
|
|
|
2010-12-05 20:31:18 -08:00
|
|
|
|
1.99 Acknowledgements
|
2003-11-14 16:48:43 +00:00
|
|
|
|
|
2006-06-24 16:58:16 -07:00
|
|
|
|
Our thanks to the contributors to the design found on the xpert mailing
|
|
|
|
|
|
list, in particular:
|
|
|
|
|
|
|
|
|
|
|
|
Alan Hourihane for work on the early implementation
|
|
|
|
|
|
Andrew C. Aitchison for help with the XFree86 DDX implementation
|
|
|
|
|
|
Andy Ritger for early questions about how mergefb/Xinerama work with RandR
|
|
|
|
|
|
Carl Worth for editing the specification and Usenix paper
|
|
|
|
|
|
David Dawes for XFree86 DDX integration work
|
|
|
|
|
|
Thomas Winischhofer for the hardware-accelerated SiS rotation implementation
|
2006-11-20 20:58:16 -08:00
|
|
|
|
Matthew Tippett and Kevin Martin for splitting outputs and CRTCs to more
|
2006-09-11 21:29:39 -07:00
|
|
|
|
fully expose what video hardware can do
|
2012-07-12 22:45:05 +10:00
|
|
|
|
Dave Airlie for the 1.4.0 protocol changes.
|
2003-11-14 16:48:43 +00:00
|
|
|
|
|
2010-12-05 20:30:43 -08:00
|
|
|
|
❧❧❧❧❧❧❧❧❧❧❧
|
2006-09-12 16:48:22 -07:00
|
|
|
|
|
2003-11-14 16:48:43 +00:00
|
|
|
|
2. Screen change model
|
|
|
|
|
|
|
2006-09-11 22:19:28 -07:00
|
|
|
|
Screens may change dynamically, either under control of this extension, or
|
|
|
|
|
|
due to external events. Examples include: monitors being swapped, pressing a
|
|
|
|
|
|
button to switch from internal display to an external monitor on a laptop,
|
|
|
|
|
|
or, eventually, the hotplug of a display card entirely on busses such as
|
|
|
|
|
|
Cardbus or Express Card which permit hot-swap (which will require other work
|
|
|
|
|
|
in addition to this extension).
|
|
|
|
|
|
|
|
|
|
|
|
Since the screen configuration is dynamic and asynchronous to the client and
|
|
|
|
|
|
may change at any time RandR provides mechanisms to ensure that your clients
|
|
|
|
|
|
view is up to date with the configuration possibilities of the moment and
|
|
|
|
|
|
enforces applications that wish to control the configuration to prove that
|
|
|
|
|
|
their information is up to date before honoring requests to change the
|
|
|
|
|
|
screen configuration (by requiring a timestamp on the request).
|
2003-11-14 16:48:43 +00:00
|
|
|
|
|
|
|
|
|
|
Interested applications are notified whenever the screen configuration
|
2006-09-11 22:19:28 -07:00
|
|
|
|
changes, providing the current size of the screen and subpixel order (see
|
2006-09-12 18:40:03 -07:00
|
|
|
|
the Render extension [RENDER]), to enable proper rendering of subpixel
|
2006-09-11 22:19:28 -07:00
|
|
|
|
decimated client text to continue, along with a time stamp of the
|
|
|
|
|
|
configuration change. A client must refresh its knowledge of the screen
|
|
|
|
|
|
configuration before attempting to change the configuration after a
|
|
|
|
|
|
notification, or the request will fail.
|
|
|
|
|
|
|
|
|
|
|
|
To avoid multiplicative explosion between orientation, reflection and sizes,
|
|
|
|
|
|
the sizes are only those sizes in the normal (0) rotation.
|
|
|
|
|
|
|
|
|
|
|
|
Rotation and reflection and how they interact can be confusing. In Randr,
|
|
|
|
|
|
the coordinate system is rotated in a counter-clockwise direction relative
|
|
|
|
|
|
to the normal orientation. Reflection is along the window system coordinate
|
|
|
|
|
|
system, not the physical screen X and Y axis, so that rotation and
|
|
|
|
|
|
reflection do not interact. The other way to consider reflection is to is
|
|
|
|
|
|
specified in the "normal" orientation, before rotation, if you find the
|
|
|
|
|
|
other way confusing.
|
|
|
|
|
|
|
|
|
|
|
|
We expect that most clients and toolkits will be oblivious to changes to the
|
2006-09-12 18:40:03 -07:00
|
|
|
|
screen structure, as they generally use the values in the connections Display
|
2006-09-11 22:19:28 -07:00
|
|
|
|
structure directly. By toolkits updating the values on the fly, we believe
|
|
|
|
|
|
pop-up menus and other pop up windows will position themselves correctly in
|
|
|
|
|
|
the face of screen configuration changes (the issue is ensuring that pop-ups
|
|
|
|
|
|
are visible on the reconfigured screen).
|
2003-11-14 16:48:43 +00:00
|
|
|
|
|
2010-12-05 20:30:43 -08:00
|
|
|
|
❧❧❧❧❧❧❧❧❧❧❧
|
2006-09-12 16:48:22 -07:00
|
|
|
|
|
2003-11-14 16:48:43 +00:00
|
|
|
|
3. Data Types
|
|
|
|
|
|
|
2012-08-26 19:00:35 -07:00
|
|
|
|
The subpixel order and transform data types are shared with the Render
|
|
|
|
|
|
extension, and are documented there.
|
|
|
|
|
|
|
|
|
|
|
|
The only datatype defined in the original extension is the screen size,
|
|
|
|
|
|
defined in the normal (0 degree) orientation. Several more are added
|
|
|
|
|
|
in later revisions.
|
2003-11-14 16:48:43 +00:00
|
|
|
|
|
2010-12-05 20:30:43 -08:00
|
|
|
|
❧❧❧❧❧❧❧❧❧❧❧
|
2006-09-12 16:48:22 -07:00
|
|
|
|
|
2003-11-14 16:48:43 +00:00
|
|
|
|
4. Errors
|
|
|
|
|
|
|
2006-09-12 16:48:22 -07:00
|
|
|
|
Errors are sent using core X error reports.
|
|
|
|
|
|
|
|
|
|
|
|
Output
|
|
|
|
|
|
A value for an OUTPUT argument does not name a defined OUTPUT.
|
|
|
|
|
|
CRTC
|
|
|
|
|
|
A value for a CRTC argument does not name a defined CRTC.
|
|
|
|
|
|
Mode
|
|
|
|
|
|
A value for a MODE argument does not name a defined MODE.
|
randr: add provider object (v8)
A provider object represents a GPU or virtual device that provides
rendering or output services to the X server. This protocol
allow controlling provider objects for output and offload slave devices.
v1.1: fix typo add missing define
v2: rename nProperties back to nAtoms, makes server simpler to c-n-p,
add missing Get request/reply
v3: bring back configure property, no point in diverging from the
output property code without good reason.
also fix typo pointed out on irc by rei4dan.
v3.1: drop cut-n-paste, increase RRNumberRequests
v4: reviewed by Aaron, address comments:
Fix provider error code
add missing notify, remove dri2 references, fix c-n-p issues.
v5: add provider change notify event with current role.
v5.1: fix cut-n-paste
v6:
document flags, fix whitespace, add better errors for SetProviderRoles,
add new events, fix pending language.
v6.1: add missing change notify event struct + missing padding
v7: fix a bunch more tab/spaces, add appendix sections for requests, events
and errors, remove multimaster flag in favour of max master counter,
move some members around to follow other events.
v7.1 fix maxMaster + wrong comment, one whitespace
v7.2 bump to being randr 1.4, fix some too generic names.
v7.3 remove dynamic flag, fix some language
v8 overhaul complete protocol, remove set provider roles, add specific
methods for setting offload sinks and output sources, add a list
of associated providers into the get provider info struct.
Earlier-review-by: Aaron Plattner <aplattner@nvidia.com>
Reviewed-by: Keith Packard <keithp@keithp.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
2012-01-20 17:38:16 +00:00
|
|
|
|
Provider
|
|
|
|
|
|
A value for a PROVIDER argument does not name a defined PROVIDER.
|
2006-09-12 16:48:22 -07:00
|
|
|
|
|
2010-12-05 20:30:43 -08:00
|
|
|
|
❧❧❧❧❧❧❧❧❧❧❧
|
2003-11-14 16:48:43 +00:00
|
|
|
|
|
|
|
|
|
|
5. Protocol Types
|
|
|
|
|
|
|
2006-09-11 22:19:28 -07:00
|
|
|
|
RRCONFIGSTATUS { Success
|
|
|
|
|
|
InvalidConfigTime
|
|
|
|
|
|
InvalidTime
|
|
|
|
|
|
Failed }
|
|
|
|
|
|
|
2006-10-03 11:01:56 -07:00
|
|
|
|
A value of type RRCONFIGSTATUS returned when manipulating the output
|
|
|
|
|
|
configuration or querying information from the server that has some
|
|
|
|
|
|
time-dependency.
|
2009-06-05 20:37:24 -07:00
|
|
|
|
|
2006-10-03 11:01:56 -07:00
|
|
|
|
InvalidConfigTime indicates that the supplied configuration
|
|
|
|
|
|
timestamp does not match the current X server configuration
|
|
|
|
|
|
timestamp. Usually this means that the output configuration has
|
|
|
|
|
|
changed since the timestamp was received by the application.
|
|
|
|
|
|
|
|
|
|
|
|
InvalidTime indicates that the supplied output reconfiguration time
|
|
|
|
|
|
is earlier than the most recent output reconfiguration request.
|
|
|
|
|
|
Generally this indicates that another application has reconfigured
|
|
|
|
|
|
the output using a later timestamp.
|
|
|
|
|
|
|
|
|
|
|
|
Failed is returned whenever the operation is unsuccessful for some
|
|
|
|
|
|
other reason. This generally indicates that the requested output
|
|
|
|
|
|
configuration is unsupported by the hardware. The goal is to make
|
|
|
|
|
|
these limitations expressed by the protocol, but when that isn't
|
|
|
|
|
|
possible it is correct to return this error value. If, as a
|
2012-08-26 18:58:06 -07:00
|
|
|
|
implementor, you find this error code required, please submit the
|
2006-10-03 11:01:56 -07:00
|
|
|
|
hardware constraints that exist so that a future version of the
|
|
|
|
|
|
extension can correctly capture the configuration constraints in
|
|
|
|
|
|
your system.
|
|
|
|
|
|
|
2006-09-11 22:19:28 -07:00
|
|
|
|
ROTATION { Rotate_0
|
|
|
|
|
|
Rotate_90
|
|
|
|
|
|
Rotate_180
|
|
|
|
|
|
Rotate_270
|
|
|
|
|
|
Reflect_X
|
|
|
|
|
|
Reflect_Y }
|
2003-11-14 16:48:43 +00:00
|
|
|
|
|
2006-10-03 11:01:56 -07:00
|
|
|
|
These values are used both to indicate a set of allowed rotations
|
|
|
|
|
|
and reflections as well as to indicate a specific rotation and
|
|
|
|
|
|
reflection combination.
|
|
|
|
|
|
|
2006-06-25 03:10:20 +02:00
|
|
|
|
RRSELECTMASK { RRScreenChangeNotifyMask
|
2006-09-11 21:29:39 -07:00
|
|
|
|
RRCrtcChangeNotifyMask (New in version 1.2)
|
2009-06-05 20:37:24 -07:00
|
|
|
|
RROutputChangeNotifyMask (New in version 1.2)
|
2012-07-09 22:18:21 -07:00
|
|
|
|
RROutputPropertyNotifyMask (New in version 1.2)
|
|
|
|
|
|
RRProviderChangeNotifyMask (New in version 1.4)
|
|
|
|
|
|
RRProviderPropertyNotifyMask (New in version 1.4)
|
|
|
|
|
|
RRResourceChangeNotifyMask (New in version 1.4) }
|
2003-11-14 16:48:43 +00:00
|
|
|
|
|
2006-06-26 12:42:50 +02:00
|
|
|
|
SIZEID { CARD16 }
|
|
|
|
|
|
|
2006-09-11 22:19:28 -07:00
|
|
|
|
MODE { XID or None }
|
2003-11-14 16:48:43 +00:00
|
|
|
|
|
2006-09-12 16:48:22 -07:00
|
|
|
|
CRTC { XID }
|
2006-09-11 21:29:39 -07:00
|
|
|
|
|
2006-09-12 16:48:22 -07:00
|
|
|
|
OUTPUT { XID }
|
2006-06-25 03:10:20 +02:00
|
|
|
|
|
2006-09-11 22:49:15 -07:00
|
|
|
|
CONNECTION { Connected, Disconnected, UnknownConnection }
|
|
|
|
|
|
|
2006-10-03 11:01:56 -07:00
|
|
|
|
This value provides an indication of whether an output is actually
|
|
|
|
|
|
connected to a monitor or other presentation device.
|
|
|
|
|
|
|
2006-09-11 22:19:28 -07:00
|
|
|
|
|
2012-08-26 19:00:35 -07:00
|
|
|
|
SCREENSIZE [ widthInPixels, heightInPixels: CARD16
|
|
|
|
|
|
widthInMillimeters, heightInMillimeters: CARD16 ]
|
2006-09-11 22:19:28 -07:00
|
|
|
|
|
2006-09-14 23:53:04 -07:00
|
|
|
|
MODEFLAG { HSyncPositive
|
|
|
|
|
|
HSyncNegative
|
|
|
|
|
|
VSyncPositive
|
|
|
|
|
|
VSyncNegative
|
|
|
|
|
|
Interlace
|
|
|
|
|
|
DoubleScan
|
|
|
|
|
|
CSync
|
|
|
|
|
|
CSyncPositive
|
|
|
|
|
|
CSyncNegative
|
|
|
|
|
|
HSkewPresent
|
|
|
|
|
|
BCast
|
|
|
|
|
|
PixelMultiplex
|
|
|
|
|
|
DoubleClock
|
|
|
|
|
|
ClockDivideBy2 }
|
2006-09-11 22:19:28 -07:00
|
|
|
|
|
2012-08-26 19:00:35 -07:00
|
|
|
|
MODEINFO [ id: MODE
|
2006-09-12 16:48:22 -07:00
|
|
|
|
name: STRING
|
2010-12-05 20:30:43 -08:00
|
|
|
|
width, height: CARD16
|
|
|
|
|
|
dotClock: CARD32
|
|
|
|
|
|
hSyncStart, hSyncEnd, hTotal, hSkew: CARD16
|
|
|
|
|
|
vSyncStart, vSyncEnd, vTotal: CARD16
|
2012-08-26 19:00:35 -07:00
|
|
|
|
modeFlags: SETofMODEFLAG ]
|
|
|
|
|
|
|
|
|
|
|
|
REFRESH [ rates: LISTofCARD16 ]
|
|
|
|
|
|
|
|
|
|
|
|
❧❧❧❧❧❧❧❧❧❧❧
|
|
|
|
|
|
|
|
|
|
|
|
5.1 Data Types defined by the Render extension
|
|
|
|
|
|
|
|
|
|
|
|
These data types use the Render extension definitions; they are shown here
|
|
|
|
|
|
only for convenience:
|
|
|
|
|
|
|
|
|
|
|
|
SUBPIXELORDER { SubPixelUnknown
|
|
|
|
|
|
SubPixelHorizontalRGB
|
|
|
|
|
|
SubPixelHorizontalBGR
|
|
|
|
|
|
SubPixelVerticalRGB
|
|
|
|
|
|
SubPixelVerticalBGR
|
|
|
|
|
|
SubPixelNone }
|
|
|
|
|
|
|
|
|
|
|
|
FIXED 32-bit value (top 16 are integer portion, bottom 16 are fraction)
|
2006-10-03 11:01:56 -07:00
|
|
|
|
|
2012-08-26 19:00:35 -07:00
|
|
|
|
TRANSFORM [
|
|
|
|
|
|
p11, p12, p13: FIXED
|
|
|
|
|
|
p21, p22, p23: FIXED
|
|
|
|
|
|
p31, p32, p33: FIXED
|
|
|
|
|
|
]
|
2006-06-24 17:35:35 -07:00
|
|
|
|
|
2010-12-05 20:30:43 -08:00
|
|
|
|
❧❧❧❧❧❧❧❧❧❧❧
|
2006-09-12 16:48:22 -07:00
|
|
|
|
|
randr: add provider object (v8)
A provider object represents a GPU or virtual device that provides
rendering or output services to the X server. This protocol
allow controlling provider objects for output and offload slave devices.
v1.1: fix typo add missing define
v2: rename nProperties back to nAtoms, makes server simpler to c-n-p,
add missing Get request/reply
v3: bring back configure property, no point in diverging from the
output property code without good reason.
also fix typo pointed out on irc by rei4dan.
v3.1: drop cut-n-paste, increase RRNumberRequests
v4: reviewed by Aaron, address comments:
Fix provider error code
add missing notify, remove dri2 references, fix c-n-p issues.
v5: add provider change notify event with current role.
v5.1: fix cut-n-paste
v6:
document flags, fix whitespace, add better errors for SetProviderRoles,
add new events, fix pending language.
v6.1: add missing change notify event struct + missing padding
v7: fix a bunch more tab/spaces, add appendix sections for requests, events
and errors, remove multimaster flag in favour of max master counter,
move some members around to follow other events.
v7.1 fix maxMaster + wrong comment, one whitespace
v7.2 bump to being randr 1.4, fix some too generic names.
v7.3 remove dynamic flag, fix some language
v8 overhaul complete protocol, remove set provider roles, add specific
methods for setting offload sinks and output sources, add a list
of associated providers into the get provider info struct.
Earlier-review-by: Aaron Plattner <aplattner@nvidia.com>
Reviewed-by: Keith Packard <keithp@keithp.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
2012-01-20 17:38:16 +00:00
|
|
|
|
5.5. Protocol Types added in version 1.4 of the extension
|
|
|
|
|
|
|
|
|
|
|
|
PROVIDER { XID }
|
|
|
|
|
|
|
|
|
|
|
|
PROVIDER_CAPS { SourceOutput, SinkOutput, SourceOffload, SinkOffload }
|
2012-08-26 18:58:06 -07:00
|
|
|
|
Capabilities for this provider:
|
randr: add provider object (v8)
A provider object represents a GPU or virtual device that provides
rendering or output services to the X server. This protocol
allow controlling provider objects for output and offload slave devices.
v1.1: fix typo add missing define
v2: rename nProperties back to nAtoms, makes server simpler to c-n-p,
add missing Get request/reply
v3: bring back configure property, no point in diverging from the
output property code without good reason.
also fix typo pointed out on irc by rei4dan.
v3.1: drop cut-n-paste, increase RRNumberRequests
v4: reviewed by Aaron, address comments:
Fix provider error code
add missing notify, remove dri2 references, fix c-n-p issues.
v5: add provider change notify event with current role.
v5.1: fix cut-n-paste
v6:
document flags, fix whitespace, add better errors for SetProviderRoles,
add new events, fix pending language.
v6.1: add missing change notify event struct + missing padding
v7: fix a bunch more tab/spaces, add appendix sections for requests, events
and errors, remove multimaster flag in favour of max master counter,
move some members around to follow other events.
v7.1 fix maxMaster + wrong comment, one whitespace
v7.2 bump to being randr 1.4, fix some too generic names.
v7.3 remove dynamic flag, fix some language
v8 overhaul complete protocol, remove set provider roles, add specific
methods for setting offload sinks and output sources, add a list
of associated providers into the get provider info struct.
Earlier-review-by: Aaron Plattner <aplattner@nvidia.com>
Reviewed-by: Keith Packard <keithp@keithp.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
2012-01-20 17:38:16 +00:00
|
|
|
|
SourceOutput: This device can source output buffers.
|
|
|
|
|
|
SinkOutput: This device can sink output buffers.
|
|
|
|
|
|
SourceOffload: This device can source offload buffers.
|
|
|
|
|
|
SinkOffload: This device can sink offload buffers.
|
|
|
|
|
|
|
|
|
|
|
|
❧❧❧❧❧❧❧❧❧❧❧
|
|
|
|
|
|
|
2003-11-14 16:48:43 +00:00
|
|
|
|
6. Extension Initialization
|
|
|
|
|
|
|
|
|
|
|
|
The name of this extension is "RANDR".
|
|
|
|
|
|
|
2006-09-12 18:40:03 -07:00
|
|
|
|
┌───
|
|
|
|
|
|
RRQueryVersion
|
2003-11-14 16:48:43 +00:00
|
|
|
|
client-major-version: CARD32
|
|
|
|
|
|
client-minor-version: CARD32
|
2006-09-12 18:40:03 -07:00
|
|
|
|
▶
|
2003-11-14 16:48:43 +00:00
|
|
|
|
major-version: CARD32
|
|
|
|
|
|
minor-version: CARD32
|
2006-09-12 18:40:03 -07:00
|
|
|
|
└───
|
2003-11-14 16:48:43 +00:00
|
|
|
|
|
|
|
|
|
|
The client sends the highest supported version to the server
|
|
|
|
|
|
and the server sends the highest version it supports, but no
|
2006-09-11 21:29:39 -07:00
|
|
|
|
higher than the requested version. Major versions changes can
|
2003-11-14 16:48:43 +00:00
|
|
|
|
introduce incompatibilities in existing functionality, minor
|
|
|
|
|
|
version changes introduce only backward compatible changes.
|
|
|
|
|
|
It is the clients responsibility to ensure that the server
|
|
|
|
|
|
supports a version which is compatible with its expectations.
|
|
|
|
|
|
|
2010-12-05 20:30:43 -08:00
|
|
|
|
❧❧❧❧❧❧❧❧❧❧❧
|
2006-09-12 16:48:22 -07:00
|
|
|
|
|
2003-11-14 16:48:43 +00:00
|
|
|
|
7. Extension Requests
|
|
|
|
|
|
|
2006-09-12 18:40:03 -07:00
|
|
|
|
┌───
|
|
|
|
|
|
RRSelectInput
|
2003-11-14 16:48:43 +00:00
|
|
|
|
window: WINDOW
|
|
|
|
|
|
enable: SETofRRSELECTMASK
|
2006-09-12 18:40:03 -07:00
|
|
|
|
└───
|
2006-06-24 16:14:07 -07:00
|
|
|
|
Errors: Window, Value
|
2003-11-14 16:48:43 +00:00
|
|
|
|
|
2006-06-24 16:58:16 -07:00
|
|
|
|
If 'enable' is RRScreenChangeNotifyMask, RRScreenChangeNotify events
|
2006-06-25 03:10:20 +02:00
|
|
|
|
will be sent when the screen configuration changes, either from
|
2006-06-24 16:58:16 -07:00
|
|
|
|
this protocol extension, or due to detected external screen
|
|
|
|
|
|
configuration changes. RRScreenChangeNotify may also be sent when
|
|
|
|
|
|
this request executes if the screen configuration has changed since
|
|
|
|
|
|
the client connected, to avoid race conditions.
|
2003-11-14 16:48:43 +00:00
|
|
|
|
|
2006-09-11 21:29:39 -07:00
|
|
|
|
New for version 1.2:
|
2009-06-05 20:37:24 -07:00
|
|
|
|
|
2006-09-11 21:29:39 -07:00
|
|
|
|
If 'enable' contains RRCrtcChangeMask, RRCrtcChangeNotify events
|
|
|
|
|
|
will be sent when a the configuration for a CRTC associated with the
|
|
|
|
|
|
screen changes, either through this protocol extension or due to
|
|
|
|
|
|
detected external changes. RRCrtcChangeNotify may also be sent when
|
|
|
|
|
|
this request executes if the CRTC configuration has changed since
|
2009-06-05 20:37:24 -07:00
|
|
|
|
the client connected, to avoid race conditions.
|
|
|
|
|
|
|
2006-09-11 21:29:39 -07:00
|
|
|
|
If 'enable' contains RROutputChangeMask, RROutputChangeNotify events
|
|
|
|
|
|
will be sent when a the configuration for an output associated with
|
|
|
|
|
|
the screen changes, either through this protocol extension or due to
|
|
|
|
|
|
detected external changes. RROutputChangeNotify may also be sent
|
|
|
|
|
|
when this request executes if the output configuration has changed
|
2009-06-05 20:37:24 -07:00
|
|
|
|
since the client connected, to avoid race conditions.
|
2006-09-13 12:23:08 -07:00
|
|
|
|
|
|
|
|
|
|
If 'enable' contains RROutputPropertyNotifyMask,
|
|
|
|
|
|
RROutputPropertyNotify events will be sent when properties change on
|
|
|
|
|
|
this output.
|
2009-06-05 20:37:24 -07:00
|
|
|
|
|
2012-07-09 22:18:21 -07:00
|
|
|
|
New for version 1.4:
|
|
|
|
|
|
|
|
|
|
|
|
If 'enable' contains RRProviderChangeNotifyMask,
|
|
|
|
|
|
RRProviderChangeNotify events will be sent whenever the role for a
|
|
|
|
|
|
provider object has changed.
|
|
|
|
|
|
|
|
|
|
|
|
If 'enable' contains RRProviderPropertyNotifyMask,
|
|
|
|
|
|
RRProviderPropertyNotify events will be sent when properties change
|
|
|
|
|
|
on a provider object.
|
|
|
|
|
|
|
|
|
|
|
|
If 'enable' contains RRResourceChangeNotifyMask,
|
|
|
|
|
|
RRResourceChangeNotify events will be sent whenever the set of
|
|
|
|
|
|
available RandR resources associated with the screen has changed.
|
|
|
|
|
|
|
2006-09-12 18:40:03 -07:00
|
|
|
|
┌───
|
|
|
|
|
|
RRSetScreenConfig
|
2006-06-26 14:33:18 +02:00
|
|
|
|
window: WINDOW
|
2003-11-14 16:48:43 +00:00
|
|
|
|
timestamp: TIMESTAMP
|
|
|
|
|
|
config-timestamp: TIMESTAMP
|
2006-06-25 08:51:27 +02:00
|
|
|
|
size-id: SIZEID
|
2003-11-14 16:48:43 +00:00
|
|
|
|
rotation: ROTATION
|
|
|
|
|
|
rate: CARD16
|
2006-09-12 18:40:03 -07:00
|
|
|
|
▶
|
2006-06-24 17:35:35 -07:00
|
|
|
|
status: RRCONFIGSTATUS
|
2003-11-14 16:48:43 +00:00
|
|
|
|
new-timestamp: TIMESTAMP
|
|
|
|
|
|
config-timestamp: TIMESTAMP
|
|
|
|
|
|
root: WINDOW
|
|
|
|
|
|
subpixelOrder: SUBPIXELORDER
|
2006-09-12 18:40:03 -07:00
|
|
|
|
└───
|
2006-06-24 16:14:07 -07:00
|
|
|
|
Errors: Value, Match
|
2003-11-14 16:48:43 +00:00
|
|
|
|
|
2006-06-24 17:35:35 -07:00
|
|
|
|
If 'timestamp' is less than the time when the configuration was last
|
|
|
|
|
|
successfully set, the request is ignored and InvalidTime returned in
|
|
|
|
|
|
status.
|
2009-06-05 20:37:24 -07:00
|
|
|
|
|
2006-06-24 17:35:35 -07:00
|
|
|
|
If 'config-timestamp' is not equal to when the server's screen
|
|
|
|
|
|
configurations last changed, the request is ignored and
|
2006-09-11 21:29:39 -07:00
|
|
|
|
InvalidConfigTime returned in status. This could occur if the
|
2006-06-24 17:35:35 -07:00
|
|
|
|
screen changed since you last made a RRGetScreenInfo request,
|
|
|
|
|
|
perhaps by a different piece of display hardware being installed.
|
|
|
|
|
|
Rather than allowing an incorrect call to be executed based on stale
|
|
|
|
|
|
data, the server will ignore the request.
|
|
|
|
|
|
|
|
|
|
|
|
'rate' contains the desired refresh rate. If it is zero, the server
|
|
|
|
|
|
selects an appropriate rate.
|
|
|
|
|
|
|
|
|
|
|
|
This request may fail for other indeterminate reasons, in which case
|
|
|
|
|
|
'status' will be set to Failed and no configuration change will be
|
|
|
|
|
|
made.
|
2009-06-05 20:37:24 -07:00
|
|
|
|
|
2006-06-24 17:35:35 -07:00
|
|
|
|
This request sets the screen to the specified size, rate, rotation
|
|
|
|
|
|
and reflection.
|
2003-11-14 16:48:43 +00:00
|
|
|
|
|
2006-06-24 17:35:35 -07:00
|
|
|
|
When this request succeeds, 'status' contains Success and the
|
|
|
|
|
|
requested changes to configuration will have been made.
|
2009-06-05 20:37:24 -07:00
|
|
|
|
|
2006-06-24 17:35:35 -07:00
|
|
|
|
'new-time-stamp' contains the time at which this request was
|
|
|
|
|
|
executed.
|
2009-06-05 20:37:24 -07:00
|
|
|
|
|
2006-06-24 17:35:35 -07:00
|
|
|
|
'config-timestamp' contains the time when the possible screen
|
|
|
|
|
|
configurations were last changed.
|
2009-06-05 20:37:24 -07:00
|
|
|
|
|
2006-06-24 17:35:35 -07:00
|
|
|
|
'root' contains the root window for the screen indicated by the
|
2006-06-26 14:33:18 +02:00
|
|
|
|
window.
|
2003-11-14 16:48:43 +00:00
|
|
|
|
|
2006-06-24 17:35:35 -07:00
|
|
|
|
'subpixelOrder' contains the resulting subpixel order of the screen
|
|
|
|
|
|
to allow correct subpixel rendering.
|
2003-11-14 16:48:43 +00:00
|
|
|
|
|
2006-06-25 08:51:27 +02:00
|
|
|
|
Value errors are generated when 'rotation', 'rate' or 'size-id'
|
|
|
|
|
|
are invalid.
|
2003-11-14 16:48:43 +00:00
|
|
|
|
|
2006-09-12 16:48:22 -07:00
|
|
|
|
┌───
|
|
|
|
|
|
RRGetScreenInfo
|
2003-11-14 16:48:43 +00:00
|
|
|
|
window: WINDOW
|
2009-06-05 20:37:24 -07:00
|
|
|
|
▶
|
2003-11-14 16:48:43 +00:00
|
|
|
|
rotations: SETofROTATION
|
|
|
|
|
|
root: WINDOW
|
|
|
|
|
|
timestamp: TIMESTAMP
|
|
|
|
|
|
config-timestamp: TIMESTAMP
|
2006-06-25 08:51:27 +02:00
|
|
|
|
size-id: SIZEID
|
2003-11-14 16:48:43 +00:00
|
|
|
|
rotation: ROTATION
|
|
|
|
|
|
rate: CARD16
|
|
|
|
|
|
sizes: LISTofSCREENSIZE
|
|
|
|
|
|
refresh: LISTofREFRESH
|
2006-09-12 16:48:22 -07:00
|
|
|
|
└───
|
2003-11-14 16:48:43 +00:00
|
|
|
|
|
2006-06-24 16:14:07 -07:00
|
|
|
|
Errors: Window
|
2003-11-14 16:48:43 +00:00
|
|
|
|
|
2006-06-24 16:58:16 -07:00
|
|
|
|
RRGetScreenInfo returns information about the current and available
|
|
|
|
|
|
configurations for the screen associated with 'window'.
|
2003-11-14 16:48:43 +00:00
|
|
|
|
|
2006-06-24 16:58:16 -07:00
|
|
|
|
'rotations' contains the set of rotations and reflections supported
|
|
|
|
|
|
by the screen.
|
2003-11-14 16:48:43 +00:00
|
|
|
|
|
2006-06-24 16:58:16 -07:00
|
|
|
|
'root' is the root window of the screen.
|
2009-06-05 20:37:24 -07:00
|
|
|
|
|
2006-06-24 16:58:16 -07:00
|
|
|
|
'config-timestamp' indicates when the screen configuration
|
2003-11-14 16:48:43 +00:00
|
|
|
|
information last changed: requests to set the screen will fail
|
|
|
|
|
|
unless the timestamp indicates that the information the client
|
|
|
|
|
|
is using is up to date, to ensure clients can be well behaved
|
2009-06-05 20:37:24 -07:00
|
|
|
|
in the face of race conditions.
|
|
|
|
|
|
|
2006-06-24 16:58:16 -07:00
|
|
|
|
'timestamp' indicates when the configuration was last set.
|
2009-06-05 20:37:24 -07:00
|
|
|
|
|
2006-06-25 08:51:27 +02:00
|
|
|
|
'size-id' indicates which size is active.
|
2006-06-24 16:58:16 -07:00
|
|
|
|
|
2006-09-11 21:29:39 -07:00
|
|
|
|
'rate' is the current refresh rate. This is zero when the refresh
|
2003-11-14 16:48:43 +00:00
|
|
|
|
rate is unknown or on devices for which refresh is not relevant.
|
|
|
|
|
|
|
2006-06-24 16:58:16 -07:00
|
|
|
|
'sizes' is the list of possible frame buffer sizes (at the normal
|
|
|
|
|
|
orientation. Each size indicates both the linear physical size of
|
|
|
|
|
|
the screen and the pixel size.
|
2003-11-14 16:48:43 +00:00
|
|
|
|
|
2006-06-24 16:58:16 -07:00
|
|
|
|
'refresh' is the list of refresh rates for each size. Each element
|
2006-09-12 18:40:03 -07:00
|
|
|
|
of 'sizes' has a corresponding element in 'refresh'. An empty list
|
2003-11-14 16:48:43 +00:00
|
|
|
|
indicates no known rates, or a device for which refresh is not
|
|
|
|
|
|
relevant.
|
|
|
|
|
|
|
|
|
|
|
|
The default size of the screen (the size that would become the
|
|
|
|
|
|
current size when the server resets) is the first size in the
|
2006-06-24 16:58:16 -07:00
|
|
|
|
list.
|
2003-11-14 16:48:43 +00:00
|
|
|
|
|
2006-06-24 16:58:16 -07:00
|
|
|
|
7.1. Extension Requests added in version 1.2 of the extension
|
2003-11-14 16:48:43 +00:00
|
|
|
|
|
2006-06-24 16:58:16 -07:00
|
|
|
|
As introduced above, version 1.2 of the extension splits the screen size
|
2006-09-11 22:19:28 -07:00
|
|
|
|
from the crtc and output configuration, permitting the subset of the screen
|
|
|
|
|
|
presented by multiple outputs to be configured. As a separate notion, the
|
2006-06-24 16:58:16 -07:00
|
|
|
|
size of the screen itself may be arbitrarily configured within a defined
|
2006-09-11 22:19:28 -07:00
|
|
|
|
range. As crtcs and outputs are added and removed from the system, the set
|
|
|
|
|
|
returned by the extension will change so that applications can detect
|
|
|
|
|
|
dynamic changes in the display environment.
|
2006-06-24 16:14:07 -07:00
|
|
|
|
|
2006-09-12 16:48:22 -07:00
|
|
|
|
┌───
|
|
|
|
|
|
RRGetScreenSizeRange
|
2006-06-26 14:33:18 +02:00
|
|
|
|
window: WINDOW
|
2006-09-12 16:48:22 -07:00
|
|
|
|
▶
|
2006-06-24 16:14:07 -07:00
|
|
|
|
CARD16 minWidth, minHeight
|
|
|
|
|
|
CARD16 maxWidth, maxHeight
|
2006-09-12 16:48:22 -07:00
|
|
|
|
└───
|
2006-06-26 14:33:18 +02:00
|
|
|
|
Errors: Window
|
2006-06-24 16:14:07 -07:00
|
|
|
|
|
|
|
|
|
|
Returns the range of possible screen sizes. The screen may be set to
|
|
|
|
|
|
any size within this range.
|
|
|
|
|
|
|
2006-09-12 16:48:22 -07:00
|
|
|
|
┌───
|
|
|
|
|
|
RRSetScreenSize
|
2006-06-26 14:33:18 +02:00
|
|
|
|
window: WINDOW
|
2006-06-24 16:58:16 -07:00
|
|
|
|
width: CARD16
|
|
|
|
|
|
height: CARD16
|
2006-06-26 14:33:18 +02:00
|
|
|
|
width-in-millimeters: CARD32
|
|
|
|
|
|
height-in-millimeters: CARD32
|
2006-09-12 16:48:22 -07:00
|
|
|
|
└───
|
2006-06-26 14:33:18 +02:00
|
|
|
|
Errors: Window, Match, Value
|
2006-06-24 16:58:16 -07:00
|
|
|
|
|
|
|
|
|
|
Sets the screen to the specified size. 'width' and 'height' must be
|
|
|
|
|
|
within the range allowed by GetScreenSizeRanges, otherwise a Value
|
|
|
|
|
|
error results. All active monitors must be configured to display a
|
|
|
|
|
|
subset of the specified size, else a Match error results.
|
|
|
|
|
|
|
2006-06-26 14:33:18 +02:00
|
|
|
|
'width-in-millimeters' and 'height-in-millimeters' can be set to
|
|
|
|
|
|
reflect the physical size of the screen reported both through this
|
|
|
|
|
|
extension and the core protocol. They must be non-zero, or Value
|
|
|
|
|
|
error results.
|
|
|
|
|
|
|
2008-12-04 15:44:12 +01:00
|
|
|
|
If panning is enabled, the width and height of the panning and the
|
|
|
|
|
|
tracking areas are adapted to the new size and clamped afterwards.
|
|
|
|
|
|
Disabled panning axes remain disabled.
|
|
|
|
|
|
Panning borders are disabled if their requirements are no longer met
|
|
|
|
|
|
(see RRSetPanning).
|
2008-11-28 18:29:19 +01:00
|
|
|
|
|
2006-09-12 16:48:22 -07:00
|
|
|
|
┌───
|
|
|
|
|
|
RRGetScreenResources
|
2006-09-11 22:19:28 -07:00
|
|
|
|
window: WINDOW
|
2006-09-12 16:48:22 -07:00
|
|
|
|
▶
|
2006-09-11 22:19:28 -07:00
|
|
|
|
timestamp: TIMESTAMP
|
|
|
|
|
|
config-timestamp: TIMESTAMP
|
2006-09-12 16:48:22 -07:00
|
|
|
|
crtcs: LISTofCRTC
|
|
|
|
|
|
outputs: LISTofOUTPUT
|
|
|
|
|
|
modes: LISTofMODEINFO
|
|
|
|
|
|
└───
|
2006-09-11 22:19:28 -07:00
|
|
|
|
Errors: Window
|
|
|
|
|
|
|
2006-09-12 16:48:22 -07:00
|
|
|
|
RRGetScreenResources returns the list of outputs and crtcs connected
|
|
|
|
|
|
to the screen associated with 'window'.
|
2006-09-11 22:49:15 -07:00
|
|
|
|
|
|
|
|
|
|
'timestamp' indicates when the configuration was last set.
|
2009-06-05 20:37:24 -07:00
|
|
|
|
|
2006-09-11 22:49:15 -07:00
|
|
|
|
'config-timestamp' indicates when the configuration information last
|
|
|
|
|
|
changed. Requests to configure the output will fail unless the
|
|
|
|
|
|
timestamp indicates that the information the client is using is up
|
|
|
|
|
|
to date, to ensure clients can be well behaved in the face of race
|
|
|
|
|
|
conditions.
|
|
|
|
|
|
|
2006-09-12 16:48:22 -07:00
|
|
|
|
'crtcs' contains the list of CRTCs associated with the screen.
|
2006-09-11 22:49:15 -07:00
|
|
|
|
|
2006-09-12 16:48:22 -07:00
|
|
|
|
'outputs' contains the list of outputs associated with the screen.
|
2006-09-11 22:49:15 -07:00
|
|
|
|
|
2006-09-12 16:48:22 -07:00
|
|
|
|
'modes' contains the list of modes associated with the screen
|
2009-06-05 20:37:24 -07:00
|
|
|
|
|
2006-09-12 16:48:22 -07:00
|
|
|
|
This request explicitly asks the server to ensure that the
|
|
|
|
|
|
configuration data is up-to-date wrt the hardware. If that requires
|
2008-11-24 15:54:09 -05:00
|
|
|
|
polling, this is when such polling would take place. If the
|
|
|
|
|
|
current configuration is all that's required, use
|
|
|
|
|
|
RRGetScreenResourcesCurrent instead.
|
|
|
|
|
|
|
2006-09-12 16:48:22 -07:00
|
|
|
|
┌───
|
|
|
|
|
|
RRGetOutputInfo
|
2006-09-11 22:19:28 -07:00
|
|
|
|
output: OUTPUT
|
2006-09-12 16:48:22 -07:00
|
|
|
|
config-timestamp: TIMESTAMP
|
|
|
|
|
|
▶
|
|
|
|
|
|
status: RRCONFIGSTATUS
|
2006-09-11 21:29:39 -07:00
|
|
|
|
timestamp: TIMESTAMP
|
2006-09-11 22:49:15 -07:00
|
|
|
|
crtc: CRTC
|
2009-06-05 20:37:24 -07:00
|
|
|
|
|
2006-09-11 22:19:28 -07:00
|
|
|
|
name: STRING
|
2006-09-11 22:49:15 -07:00
|
|
|
|
connection: CONNECTION
|
2006-09-13 12:23:08 -07:00
|
|
|
|
subpixel-order: SUBPIXELORDER
|
2010-12-05 20:30:43 -08:00
|
|
|
|
widthInMillimeters, heightInMillimeters: CARD32
|
2006-09-11 22:19:28 -07:00
|
|
|
|
crtcs: LISTofCRTC
|
|
|
|
|
|
clones: LISTofOUTPUT
|
2007-04-17 14:25:38 -07:00
|
|
|
|
modes: LISTofMODE
|
2006-10-04 20:03:35 -07:00
|
|
|
|
num-preferred: CARD16
|
2006-09-12 16:48:22 -07:00
|
|
|
|
└───
|
2006-09-12 18:40:03 -07:00
|
|
|
|
Errors: Output
|
2006-09-11 22:49:15 -07:00
|
|
|
|
|
|
|
|
|
|
RRGetOutputInfo returns information about the current and available
|
2009-06-05 20:37:24 -07:00
|
|
|
|
configurations 'output'.
|
|
|
|
|
|
|
2006-09-12 16:48:22 -07:00
|
|
|
|
If 'config-timestamp' does not match the current configuration
|
|
|
|
|
|
timestamp (as returned by RRGetScreenResources), 'status' is set to
|
|
|
|
|
|
InvalidConfigTime and the remaining reply data is empty. Otherwise,
|
|
|
|
|
|
'status' is set to Success.
|
2006-09-11 22:49:15 -07:00
|
|
|
|
|
|
|
|
|
|
'timestamp' indicates when the configuration was last set.
|
2009-06-05 20:37:24 -07:00
|
|
|
|
|
2006-09-11 22:49:15 -07:00
|
|
|
|
'crtc' is the current source CRTC for video data, or Disabled if the
|
|
|
|
|
|
output is not connected to any CRTC.
|
|
|
|
|
|
|
|
|
|
|
|
'name' is a UTF-8 encoded string designed to be presented to the
|
|
|
|
|
|
user to indicate which output this is. E.g. "S-Video" or "DVI".
|
|
|
|
|
|
|
|
|
|
|
|
'connection' indicates whether the hardware was able to detect a
|
|
|
|
|
|
device connected to this output. If the hardware cannot determine
|
|
|
|
|
|
whether something is connected, it will set this to
|
|
|
|
|
|
UnknownConnection.
|
2009-06-05 20:37:24 -07:00
|
|
|
|
|
2006-09-13 12:23:08 -07:00
|
|
|
|
'subpixel-order' contains the resulting subpixel order of the
|
|
|
|
|
|
connected device to allow correct subpixel rendering.
|
|
|
|
|
|
|
2006-11-01 00:23:37 -08:00
|
|
|
|
'widthInMillimeters' and 'heightInMillimeters' report the physical
|
|
|
|
|
|
size of the displayed area. If unknown, or not really fixed (e.g.,
|
|
|
|
|
|
for a projector), these values are both zero.
|
|
|
|
|
|
|
2006-09-11 22:49:15 -07:00
|
|
|
|
'crtcs' is the list of CRTCs that this output may be connected to.
|
|
|
|
|
|
Attempting to connect this output to a different CRTC results in a
|
|
|
|
|
|
Match error.
|
|
|
|
|
|
|
|
|
|
|
|
'clones' is the list of outputs which may be simultaneously
|
|
|
|
|
|
connected to the same CRTC along with this output. Attempting to
|
|
|
|
|
|
connect this output with an output not in the 'clones' list
|
|
|
|
|
|
results in a Match error.
|
|
|
|
|
|
|
|
|
|
|
|
'modes' is the list of modes supported by this output. Attempting to
|
|
|
|
|
|
connect this output to a CRTC not using one of these modes results
|
|
|
|
|
|
in a Match error.
|
|
|
|
|
|
|
2006-10-04 20:03:35 -07:00
|
|
|
|
The first 'num-preferred' modes in 'modes' are preferred by the
|
|
|
|
|
|
monitor in some way; for fixed-pixel devices, this would generally
|
|
|
|
|
|
indicate which modes match the resolution of the output device.
|
|
|
|
|
|
|
2006-09-13 12:23:08 -07:00
|
|
|
|
┌───
|
|
|
|
|
|
RRListOutputProperties
|
2010-12-05 20:30:43 -08:00
|
|
|
|
output:OUTPUT
|
2006-09-13 12:23:08 -07:00
|
|
|
|
▶
|
2012-07-09 22:18:20 -07:00
|
|
|
|
atoms: LISTofATOM
|
2006-09-13 12:23:08 -07:00
|
|
|
|
└───
|
|
|
|
|
|
Errors: Output
|
|
|
|
|
|
|
|
|
|
|
|
This request returns the atoms of properties currently defined on
|
|
|
|
|
|
the output.
|
|
|
|
|
|
|
2006-11-20 20:58:16 -08:00
|
|
|
|
┌───
|
|
|
|
|
|
RRQueryOutputProperty
|
|
|
|
|
|
output: OUTPUT
|
|
|
|
|
|
property: ATOM
|
|
|
|
|
|
▶
|
2010-12-05 20:30:43 -08:00
|
|
|
|
pending: BOOL
|
2006-11-20 20:58:16 -08:00
|
|
|
|
range: BOOL
|
|
|
|
|
|
immutable: BOOL
|
|
|
|
|
|
valid-values: LISTofINT32
|
|
|
|
|
|
└───
|
|
|
|
|
|
Errors: Name, Atom, Output
|
|
|
|
|
|
|
|
|
|
|
|
If the specified property does not exist for the specified output,
|
|
|
|
|
|
then a Name error is returned.
|
|
|
|
|
|
|
|
|
|
|
|
If 'pending' is TRUE, changes made to property values with
|
|
|
|
|
|
RRChangeOutputProperty will be saved in the pending property value
|
|
|
|
|
|
and be automatically copied to the current value on the next
|
|
|
|
|
|
RRSetCrtcConfig request involving the named output. If 'pending' is
|
|
|
|
|
|
FALSE, changes are copied immediately.
|
2009-06-05 20:37:24 -07:00
|
|
|
|
|
2006-11-20 20:58:16 -08:00
|
|
|
|
If 'range' is TRUE, then the valid-values list will contain
|
|
|
|
|
|
precisely two values indicating the minimum and maximum allowed
|
|
|
|
|
|
values. If 'range' is FALSE, then the valid-values list will contain
|
|
|
|
|
|
the list of possible values; attempts to set other values will
|
|
|
|
|
|
result in a Value error.
|
|
|
|
|
|
|
|
|
|
|
|
If 'immutable' is TRUE, then the property configuration cannot be
|
|
|
|
|
|
changed by clients. Immutable properties are interpreted by the X
|
|
|
|
|
|
server.
|
2009-06-05 20:37:24 -07:00
|
|
|
|
|
2006-11-20 20:58:16 -08:00
|
|
|
|
┌───
|
|
|
|
|
|
RRConfigureOutputProperty
|
|
|
|
|
|
output: OUTPUT
|
|
|
|
|
|
property: ATOM
|
2010-12-05 20:30:43 -08:00
|
|
|
|
pending: BOOL
|
2006-11-20 20:58:16 -08:00
|
|
|
|
range: BOOL
|
|
|
|
|
|
valid-values: LISTofINT32
|
|
|
|
|
|
└───
|
|
|
|
|
|
Errors: Access, Name, Atom, Output
|
|
|
|
|
|
|
|
|
|
|
|
If the specified property is 'immutable', an Access error is
|
|
|
|
|
|
returned.
|
|
|
|
|
|
|
|
|
|
|
|
Otherwise, the configuration of the specified property is changed to
|
|
|
|
|
|
the values provided in this request.
|
|
|
|
|
|
|
2006-11-24 13:44:55 -08:00
|
|
|
|
If the specified property does not exist for the specified output,
|
|
|
|
|
|
it is created with an empty value and None type.
|
|
|
|
|
|
|
2006-09-13 12:23:08 -07:00
|
|
|
|
┌───
|
|
|
|
|
|
RRChangeOutputProperty
|
2010-12-05 20:30:43 -08:00
|
|
|
|
output: OUTPUT
|
2006-09-13 12:23:08 -07:00
|
|
|
|
property, type: ATOM
|
|
|
|
|
|
format: {8, 16, 32}
|
|
|
|
|
|
mode: { Replace, Prepend, Append }
|
|
|
|
|
|
data: LISTofINT8 or LISTofINT16 or LISTofINT32
|
|
|
|
|
|
└───
|
|
|
|
|
|
Errors: Alloc, Atom, Match, Value, Output
|
2009-06-05 20:37:24 -07:00
|
|
|
|
|
2006-11-20 20:58:16 -08:00
|
|
|
|
This request alters the value of the property for the specified
|
|
|
|
|
|
output. If the property is marked as a 'pending' property, only the
|
|
|
|
|
|
pending value of the property is changed. Otherwise, changes are
|
|
|
|
|
|
reflected in both the pending and current values of the property.
|
|
|
|
|
|
The type is uninterpreted by the server. The format specifies
|
|
|
|
|
|
whether the data should be viewed as a list of 8-bit, 16-bit, or
|
|
|
|
|
|
32-bit quantities so that the server can correctly byte-swap as
|
|
|
|
|
|
necessary.
|
2006-09-13 12:23:08 -07:00
|
|
|
|
|
|
|
|
|
|
If the mode is Replace, the previous property value is discarded.
|
|
|
|
|
|
If the mode is Prepend or Append, then the type and format must
|
|
|
|
|
|
match the existing property value (or a Match error results). If
|
|
|
|
|
|
the property is undefined, it is treated as defined with the correct
|
|
|
|
|
|
type and format with zero-length data.
|
2009-06-05 20:37:24 -07:00
|
|
|
|
|
2006-09-13 12:23:08 -07:00
|
|
|
|
For Prepend, the data is tacked on to the beginning of the existing
|
|
|
|
|
|
data, and for Append, it is tacked on to the end of the existing data.
|
|
|
|
|
|
|
|
|
|
|
|
This request generates a OutputPropertyNotify
|
|
|
|
|
|
|
|
|
|
|
|
The lifetime of a property is not tied to the storing client.
|
|
|
|
|
|
Properties remain until explicitly deleted, until the output is
|
|
|
|
|
|
destroyed, or until server reset (see section 10).
|
|
|
|
|
|
|
|
|
|
|
|
The maximum size of a property is server-dependent and may vary
|
2009-06-05 20:37:24 -07:00
|
|
|
|
dynamically.
|
2006-09-13 12:23:08 -07:00
|
|
|
|
|
|
|
|
|
|
┌───
|
|
|
|
|
|
RRDeleteOutputProperty
|
2010-12-05 20:30:43 -08:00
|
|
|
|
output: OUTPUT
|
2006-09-13 12:23:08 -07:00
|
|
|
|
property: ATOM
|
|
|
|
|
|
└───
|
|
|
|
|
|
Errors: Atom, Output
|
2009-06-05 20:37:24 -07:00
|
|
|
|
|
2006-09-13 12:23:08 -07:00
|
|
|
|
This request deletes the property from the specified window if the
|
|
|
|
|
|
property exists and generates a OutputPropertyNotify event unless
|
|
|
|
|
|
the property does not exist.
|
|
|
|
|
|
|
|
|
|
|
|
┌───
|
|
|
|
|
|
RRGetOutputProperty
|
2010-12-05 20:30:43 -08:00
|
|
|
|
output: OUTPUT
|
2006-09-13 12:23:08 -07:00
|
|
|
|
property: ATOM
|
|
|
|
|
|
type: ATOM or AnyPropertyType
|
|
|
|
|
|
long-offset, long-length: CARD32
|
|
|
|
|
|
delete: BOOL
|
2006-11-20 20:58:16 -08:00
|
|
|
|
pending: BOOL
|
2006-09-13 12:23:08 -07:00
|
|
|
|
▶
|
|
|
|
|
|
type: ATOM or None
|
|
|
|
|
|
format: {0, 8, 16, 32}
|
|
|
|
|
|
bytes-after: CARD32
|
|
|
|
|
|
value: LISTofINT8 or LISTofINT16 or LISTofINT32
|
|
|
|
|
|
└───
|
|
|
|
|
|
Errors: Atom, Value, Output
|
|
|
|
|
|
|
|
|
|
|
|
If the specified property does not exist for the specified output,
|
|
|
|
|
|
then the return type is None, the format and bytes-after are zero,
|
|
|
|
|
|
and the value is empty. The delete argument is ignored in this
|
2009-06-05 20:37:24 -07:00
|
|
|
|
case.
|
|
|
|
|
|
|
2006-09-13 12:23:08 -07:00
|
|
|
|
If the specified property exists but its type does not match the
|
|
|
|
|
|
specified type, then the return type is the actual type of the
|
|
|
|
|
|
property, the format is the actual format of the property (never
|
|
|
|
|
|
zero), the bytes-after is the length of the property in bytes (even
|
|
|
|
|
|
if the format is 16 or 32), and the value is empty. The delete
|
2009-06-05 20:37:24 -07:00
|
|
|
|
argument is ignored in this case.
|
|
|
|
|
|
|
2006-09-13 12:23:08 -07:00
|
|
|
|
If the specified property exists and either AnyPropertyType is
|
|
|
|
|
|
specified or the specified type matches the actual type of the
|
|
|
|
|
|
property, then the return type is the actual type of the property,
|
|
|
|
|
|
the format is the actual format of the property (never zero), and
|
|
|
|
|
|
the bytes-after and value are as follows, given:
|
|
|
|
|
|
|
2009-06-05 20:37:24 -07:00
|
|
|
|
N = actual length of the stored property in bytes
|
2006-09-13 12:23:08 -07:00
|
|
|
|
(even if the format is 16 or 32)
|
|
|
|
|
|
I = 4 × offset
|
|
|
|
|
|
T = N - I
|
|
|
|
|
|
L = MINIMUM(T, 4 × long-length)
|
|
|
|
|
|
A = N - (I + L)
|
2009-06-05 20:37:24 -07:00
|
|
|
|
|
2006-11-24 13:44:55 -08:00
|
|
|
|
If 'pending' is true, and if the property holds a pending value,
|
|
|
|
|
|
then the value returned will be the pending value of the property
|
|
|
|
|
|
rather than the current value. The returned value starts at byte
|
|
|
|
|
|
index I in the property (indexing from 0), and its length in bytes
|
|
|
|
|
|
is L. However, it is a Value error if long-offset is given such
|
|
|
|
|
|
that L is negative. The value of bytes-after is A, giving the
|
|
|
|
|
|
number of trailing unread bytes in the stored property. If delete
|
|
|
|
|
|
is True and the bytes-after is zero, the property is also deleted
|
|
|
|
|
|
from the output, and a RROutputPropertyNotify event is generated.
|
2006-09-13 12:23:08 -07:00
|
|
|
|
|
2006-09-12 16:48:22 -07:00
|
|
|
|
┌───
|
|
|
|
|
|
RRCreateMode
|
2010-12-05 20:30:43 -08:00
|
|
|
|
window: WINDOW
|
2006-09-12 16:48:22 -07:00
|
|
|
|
modeinfo: MODEINFO
|
|
|
|
|
|
▶
|
2010-12-05 20:30:43 -08:00
|
|
|
|
mode: MODE
|
2006-09-12 16:48:22 -07:00
|
|
|
|
└───
|
|
|
|
|
|
Errors: Window, Name, Value
|
2009-06-05 20:37:24 -07:00
|
|
|
|
|
2006-09-12 16:48:22 -07:00
|
|
|
|
'modeinfo' provides a new mode for outputs on the screen
|
|
|
|
|
|
associated with 'window'. If the name of 'modeinfo' names an
|
|
|
|
|
|
existing mode, a Name error is returned. If some parameter of the
|
|
|
|
|
|
mode is not valid in some other way, a Value error is returned.
|
2006-09-11 22:19:28 -07:00
|
|
|
|
|
2006-09-12 16:48:22 -07:00
|
|
|
|
The returned 'mode' provides the id for the mode.
|
2009-06-05 20:37:24 -07:00
|
|
|
|
|
2006-09-12 16:48:22 -07:00
|
|
|
|
┌───
|
|
|
|
|
|
RRDestroyMode
|
2010-12-05 20:30:43 -08:00
|
|
|
|
mode: MODE
|
2006-09-12 16:48:22 -07:00
|
|
|
|
└───
|
|
|
|
|
|
Errors: Mode, Access
|
|
|
|
|
|
|
|
|
|
|
|
The user-defined 'mode' is destroyed. 'mode' must name a mode
|
|
|
|
|
|
defined with RRCreateMode, else an Match error is returned. If
|
|
|
|
|
|
'mode' is in use by some CRTC or Output, then an Access error is
|
|
|
|
|
|
returned.
|
2009-06-05 20:37:24 -07:00
|
|
|
|
|
2006-09-12 16:48:22 -07:00
|
|
|
|
┌───
|
|
|
|
|
|
RRAddOutputMode
|
|
|
|
|
|
output: OUTPUT
|
|
|
|
|
|
mode: MODE
|
|
|
|
|
|
└───
|
|
|
|
|
|
Errors: Output, Mode, Match
|
|
|
|
|
|
|
|
|
|
|
|
'output' indicates which output is to be configured.
|
2006-09-11 22:19:28 -07:00
|
|
|
|
|
2006-09-12 16:48:22 -07:00
|
|
|
|
'mode' specifies which mode to add. If 'mode' is not valid for
|
2009-06-05 20:37:24 -07:00
|
|
|
|
'output', then a Match error is generated.
|
2006-09-12 16:48:22 -07:00
|
|
|
|
|
|
|
|
|
|
This request generates OutputChangeNotify events.
|
2009-06-05 20:37:24 -07:00
|
|
|
|
|
2006-09-12 16:48:22 -07:00
|
|
|
|
┌───
|
|
|
|
|
|
RRDeleteOutputMode
|
|
|
|
|
|
output: OUTPUT
|
|
|
|
|
|
mode: MODE
|
|
|
|
|
|
└───
|
|
|
|
|
|
Errors: Output, Mode
|
|
|
|
|
|
|
|
|
|
|
|
'output' indicates which output is to be configured.
|
|
|
|
|
|
|
|
|
|
|
|
'mode' specifies which mode to delete. 'mode' must have been added
|
|
|
|
|
|
with RRAddOutputMode, else an Access error is returned. 'mode' must
|
|
|
|
|
|
not be active, else a Match error is returned.
|
|
|
|
|
|
|
|
|
|
|
|
This request generates OutputChangeNotify events.
|
|
|
|
|
|
|
|
|
|
|
|
┌───
|
|
|
|
|
|
RRGetCrtcInfo
|
|
|
|
|
|
crtc: CRTC
|
|
|
|
|
|
config-timestamp: TIMESTAMP
|
|
|
|
|
|
▶
|
|
|
|
|
|
status: RRCONFIGSTATUS
|
2006-09-11 22:19:28 -07:00
|
|
|
|
timestamp: TIMESTAMP
|
2006-09-11 21:29:39 -07:00
|
|
|
|
x, y: INT16
|
2006-09-12 16:48:22 -07:00
|
|
|
|
width, height: CARD16
|
2006-09-11 22:19:28 -07:00
|
|
|
|
mode: MODE
|
2006-09-11 21:29:39 -07:00
|
|
|
|
rotation: ROTATION
|
2006-09-12 16:48:22 -07:00
|
|
|
|
outputs: LISTofOUTPUT
|
2009-06-05 20:37:24 -07:00
|
|
|
|
|
2006-09-11 21:29:39 -07:00
|
|
|
|
rotations: SETofROTATION
|
2006-09-12 16:48:22 -07:00
|
|
|
|
possible-outputs: LISTofOUTPUT
|
|
|
|
|
|
└───
|
2006-06-24 17:35:35 -07:00
|
|
|
|
|
2006-06-26 14:33:18 +02:00
|
|
|
|
Errors: Window
|
2006-06-24 17:35:35 -07:00
|
|
|
|
|
2006-09-11 21:29:39 -07:00
|
|
|
|
RRGetCrtcModes returns information about the current and available
|
|
|
|
|
|
configurations for the specified crtc connected to the screen
|
|
|
|
|
|
associated with 'window'.
|
2006-06-24 17:35:35 -07:00
|
|
|
|
|
2006-09-12 16:48:22 -07:00
|
|
|
|
If 'config-timestamp' does not match the current configuration
|
|
|
|
|
|
timestamp (as returned by RRGetScreenResources), 'status' is set to
|
|
|
|
|
|
InvalidConfigTime and the remaining reply data is empty. Otherwise,
|
|
|
|
|
|
'status' is set to Success.
|
2009-06-05 20:37:24 -07:00
|
|
|
|
|
2006-06-24 17:35:35 -07:00
|
|
|
|
'timestamp' indicates when the configuration was last set.
|
2009-06-05 20:37:24 -07:00
|
|
|
|
|
2006-09-11 21:29:39 -07:00
|
|
|
|
'x' and 'y' indicate the position of this CRTC within the screen
|
|
|
|
|
|
region. They will be set to 0 when the CRTC is disabled.
|
2006-09-12 16:48:22 -07:00
|
|
|
|
|
2008-02-15 15:49:35 -08:00
|
|
|
|
'width' and 'height' indicate the size of the area within the screen
|
|
|
|
|
|
presented by this CRTC. This may be different than the size of the
|
2011-07-27 22:57:56 -07:00
|
|
|
|
mode due to rotation, the projective transform, and the Border property
|
|
|
|
|
|
described below. They will be set to 0 when the CRTC is disabled.
|
2009-06-05 20:37:24 -07:00
|
|
|
|
|
2006-09-12 16:48:22 -07:00
|
|
|
|
'mode' indicates which mode is active, or None indicating that the
|
|
|
|
|
|
CRTC has been disabled and is not displaying the screen contents.
|
2006-06-24 17:35:35 -07:00
|
|
|
|
|
|
|
|
|
|
'rotation' indicates the active rotation. It is set to Rotate_0
|
2006-09-11 21:29:39 -07:00
|
|
|
|
when the CRTC is disabled.
|
2009-06-05 20:37:24 -07:00
|
|
|
|
|
2006-09-12 16:48:22 -07:00
|
|
|
|
'outputs' is the list of outputs currently connected to this CRTC
|
|
|
|
|
|
and is empty when the CRTC is disabled.
|
|
|
|
|
|
|
2006-06-24 17:35:35 -07:00
|
|
|
|
'rotations' contains the set of rotations and reflections supported
|
2006-09-11 21:29:39 -07:00
|
|
|
|
by the CRTC.
|
2006-06-24 17:35:35 -07:00
|
|
|
|
|
2006-09-12 16:48:22 -07:00
|
|
|
|
'possible-outputs' lists all of the outputs which may be connected
|
|
|
|
|
|
to this CRTC.
|
2006-06-24 17:35:35 -07:00
|
|
|
|
|
2006-09-12 16:48:22 -07:00
|
|
|
|
┌───
|
|
|
|
|
|
RRSetCrtcConfig
|
2006-09-11 22:19:28 -07:00
|
|
|
|
crtc: CRTC
|
2006-06-24 17:35:35 -07:00
|
|
|
|
timestamp: TIMESTAMP
|
|
|
|
|
|
config-timestamp: TIMESTAMP
|
2006-06-25 03:10:20 +02:00
|
|
|
|
x, y: INT16
|
2006-09-11 22:19:28 -07:00
|
|
|
|
mode: MODE
|
2006-06-24 17:35:35 -07:00
|
|
|
|
rotation: ROTATION
|
2006-09-11 21:29:39 -07:00
|
|
|
|
outputs: LISTofOUTPUT
|
2006-09-12 16:48:22 -07:00
|
|
|
|
▶
|
2006-06-25 03:10:20 +02:00
|
|
|
|
status: RRCONFIGSTATUS
|
2006-06-24 17:35:35 -07:00
|
|
|
|
new-timestamp: TIMESTAMP
|
2006-09-12 16:48:22 -07:00
|
|
|
|
└───
|
2006-06-25 03:10:20 +02:00
|
|
|
|
Errors: Value, Match
|
|
|
|
|
|
|
|
|
|
|
|
If 'timestamp' is less than the time when the configuration was last
|
|
|
|
|
|
successfully set, the request is ignored and InvalidTime returned in
|
|
|
|
|
|
status.
|
2009-06-05 20:37:24 -07:00
|
|
|
|
|
2006-06-25 03:10:20 +02:00
|
|
|
|
If 'config-timestamp' is not equal to when the monitor's
|
|
|
|
|
|
configuration last changed, the request is ignored and
|
2006-09-11 21:29:39 -07:00
|
|
|
|
InvalidConfigTime returned in status. This could occur if the
|
2006-06-25 03:10:20 +02:00
|
|
|
|
monitor changed since you last made a RRGetScreenInfo request,
|
|
|
|
|
|
perhaps by a different monitor being connected to the machine.
|
|
|
|
|
|
Rather than allowing an incorrect call to be executed based on stale
|
|
|
|
|
|
data, the server will ignore the request.
|
|
|
|
|
|
|
|
|
|
|
|
'x' and 'y' contain the desired location within the screen for this
|
|
|
|
|
|
monitor's content. 'x' and 'y' must be within the screen size, else
|
|
|
|
|
|
a Value error results.
|
|
|
|
|
|
|
2006-09-11 22:19:28 -07:00
|
|
|
|
'mode' is either the desired mode or None indicating the CRTC should
|
|
|
|
|
|
be disabled. If 'mode' is not one of these values, a Value
|
|
|
|
|
|
error results. 'mode' must be valid for all of the configured outputs,
|
|
|
|
|
|
else a Match error.
|
2006-06-25 03:10:20 +02:00
|
|
|
|
|
|
|
|
|
|
'rotation' contains the desired rotation along with which
|
|
|
|
|
|
reflections should be enabled. The rotation and reflection values
|
|
|
|
|
|
must be among those allowed for this monitor, else a Value error
|
|
|
|
|
|
results.
|
|
|
|
|
|
|
2006-09-11 21:29:39 -07:00
|
|
|
|
'outputs' contains the set of outputs that this CRTC should be
|
|
|
|
|
|
connected to. The set must be among the list of acceptable output
|
2009-06-05 20:37:24 -07:00
|
|
|
|
sets for this CRTC or a Match error results.
|
|
|
|
|
|
|
2006-09-11 22:19:28 -07:00
|
|
|
|
If 'mode' is None, then 'outputs' must be empty, else a Match error
|
2006-09-12 18:40:03 -07:00
|
|
|
|
results. Conversely, if 'mode' is not None, then 'outputs' must not be
|
2006-09-11 22:19:28 -07:00
|
|
|
|
empty, else a Match error results.
|
2009-06-05 20:37:24 -07:00
|
|
|
|
|
2006-06-25 03:10:20 +02:00
|
|
|
|
This request may fail for other indeterminate reasons, in which case
|
|
|
|
|
|
'status' will be set to Failed and no configuration change will be
|
|
|
|
|
|
made.
|
2009-06-05 20:37:24 -07:00
|
|
|
|
|
2006-09-11 22:19:28 -07:00
|
|
|
|
This request sets the CRTC to the specified position, mode, rotation
|
|
|
|
|
|
and reflection. The entire area of the CRTC must fit within the
|
|
|
|
|
|
screen size, else a Match error results. As an example, rotating the
|
|
|
|
|
|
screen so that a single CRTC fills the entire screen before and
|
|
|
|
|
|
after may necessitate disabling the CRTC, resizing the screen,
|
|
|
|
|
|
then re-enabling the CRTC at the new configuration to avoid an
|
|
|
|
|
|
invalid intermediate configuration.
|
2006-06-25 03:10:20 +02:00
|
|
|
|
|
2008-12-04 15:44:12 +01:00
|
|
|
|
If panning is enabled, the width and height of the panning and the
|
|
|
|
|
|
tracking areas are clamped to the new mode size.
|
|
|
|
|
|
Disabled panning axes remain disabled.
|
|
|
|
|
|
Panning borders are disabled if their requirements are no longer met
|
|
|
|
|
|
(see RRSetPanning).
|
2008-11-28 18:29:19 +01:00
|
|
|
|
|
2006-06-25 03:10:20 +02:00
|
|
|
|
When this request succeeds, 'status' contains Success and the
|
|
|
|
|
|
requested changes to configuration will have been made.
|
2009-06-05 20:37:24 -07:00
|
|
|
|
|
2006-06-25 03:10:20 +02:00
|
|
|
|
'new-time-stamp' contains the time at which this request was
|
|
|
|
|
|
executed.
|
2009-06-05 20:37:24 -07:00
|
|
|
|
|
2006-09-13 12:23:08 -07:00
|
|
|
|
┌───
|
|
|
|
|
|
RRGetCrtcGammaSize
|
|
|
|
|
|
crtc: CRTC
|
|
|
|
|
|
▶
|
|
|
|
|
|
size: CARD16
|
|
|
|
|
|
└───
|
|
|
|
|
|
Errors: Crtc
|
|
|
|
|
|
|
|
|
|
|
|
This request returns the size of the gamma ramps used by 'crtc'.
|
|
|
|
|
|
|
|
|
|
|
|
┌───
|
|
|
|
|
|
RRGetCrtcGamma
|
|
|
|
|
|
crtc: CRTC
|
|
|
|
|
|
▶
|
2010-12-05 20:30:43 -08:00
|
|
|
|
red: LISTofCARD16
|
2006-09-13 12:23:08 -07:00
|
|
|
|
green: LISTofCARD16
|
|
|
|
|
|
blue: LISTofCARD16
|
2009-06-05 20:37:24 -07:00
|
|
|
|
└───
|
2006-09-13 12:23:08 -07:00
|
|
|
|
Errors: Crtc
|
2009-06-05 20:37:24 -07:00
|
|
|
|
|
2006-09-13 12:23:08 -07:00
|
|
|
|
This request returns the currently set gamma ramps for 'crtc'. All
|
|
|
|
|
|
three lists will be the size returned by the RRGetCrtcGammaSize
|
|
|
|
|
|
request.
|
2009-06-05 20:37:24 -07:00
|
|
|
|
|
2006-09-13 12:23:08 -07:00
|
|
|
|
┌───
|
|
|
|
|
|
RRSetCrtcGamma
|
|
|
|
|
|
crtc: CRTC
|
|
|
|
|
|
red: LISTofCARD16
|
|
|
|
|
|
green: LISTofCARD16
|
|
|
|
|
|
blue: LISTofCARD16
|
|
|
|
|
|
└───
|
|
|
|
|
|
Errors: Crtc, Match
|
2009-06-05 20:37:24 -07:00
|
|
|
|
|
2006-09-13 12:23:08 -07:00
|
|
|
|
This request sets the gamma ramps for 'crtc'. All three lists
|
|
|
|
|
|
must be the size returned by RRGetCrtcGammaSize else a Value error
|
|
|
|
|
|
results.
|
2003-11-14 16:48:43 +00:00
|
|
|
|
|
2008-11-24 15:54:09 -05:00
|
|
|
|
7.2. Extension Requests added in version 1.3 of the extension
|
|
|
|
|
|
|
|
|
|
|
|
┌───
|
|
|
|
|
|
RRGetScreenResourcesCurrent
|
|
|
|
|
|
window: WINDOW
|
|
|
|
|
|
▶
|
|
|
|
|
|
timestamp: TIMESTAMP
|
|
|
|
|
|
config-timestamp: TIMESTAMP
|
|
|
|
|
|
crtcs: LISTofCRTC
|
|
|
|
|
|
outputs: LISTofOUTPUT
|
|
|
|
|
|
modes: LISTofMODEINFO
|
|
|
|
|
|
└───
|
|
|
|
|
|
Errors: Window
|
|
|
|
|
|
|
|
|
|
|
|
RRGetScreenResourcesCurrent returns the list of outputs and crtcs
|
|
|
|
|
|
connected to the screen associated with 'window'.
|
|
|
|
|
|
|
|
|
|
|
|
'timestamp' indicates when the configuration was last set.
|
2009-06-05 20:37:24 -07:00
|
|
|
|
|
2008-11-24 15:54:09 -05:00
|
|
|
|
'config-timestamp' indicates when the configuration information last
|
|
|
|
|
|
changed. Requests to configure the output will fail unless the
|
|
|
|
|
|
timestamp indicates that the information the client is using is up
|
|
|
|
|
|
to date, to ensure clients can be well behaved in the face of race
|
|
|
|
|
|
conditions.
|
|
|
|
|
|
|
|
|
|
|
|
'crtcs' contains the list of CRTCs associated with the screen.
|
|
|
|
|
|
|
|
|
|
|
|
'outputs' contains the list of outputs associated with the screen.
|
|
|
|
|
|
|
2009-04-01 11:47:03 -04:00
|
|
|
|
'modes' contains the list of modes associated with the screen.
|
2009-06-05 20:37:24 -07:00
|
|
|
|
|
2008-11-24 15:54:09 -05:00
|
|
|
|
Unlike RRGetScreenResources, this merely returns the current
|
|
|
|
|
|
configuration, and does not poll for hardware changes.
|
|
|
|
|
|
|
2008-02-15 15:49:35 -08:00
|
|
|
|
┌───
|
|
|
|
|
|
RRSetCrtcTransform
|
|
|
|
|
|
crtc: CRTC
|
|
|
|
|
|
transform: TRANSFORM
|
2008-03-15 00:32:35 -07:00
|
|
|
|
filter: STRING8
|
|
|
|
|
|
values: LISTofFIXED
|
2008-02-15 15:49:35 -08:00
|
|
|
|
└───
|
|
|
|
|
|
Errors: Crtc, Match
|
|
|
|
|
|
|
2008-12-03 13:36:00 -05:00
|
|
|
|
This request provides a mechanism that is more general than the
|
|
|
|
|
|
existing rotation and reflection values for describing the
|
|
|
|
|
|
transformation from frame buffer image to crtc presentation.
|
|
|
|
|
|
'transform' is a full 2D projective transformation from screen
|
|
|
|
|
|
coordinate space to crtc coordinate space. This transformation is
|
|
|
|
|
|
applied before the rotation and reflection values to compute the
|
|
|
|
|
|
complete transform.
|
|
|
|
|
|
|
|
|
|
|
|
'filter' and 'values' specify a Render filter that may be used by the
|
|
|
|
|
|
server when transforming data from frame buffer to crtc.
|
|
|
|
|
|
|
|
|
|
|
|
This request sets the transform to be used at the next
|
|
|
|
|
|
RRSetCrtcConfig request execution; it does not cause any change to
|
|
|
|
|
|
occur in the current configuration.
|
|
|
|
|
|
|
|
|
|
|
|
When a non-identity transformation is in use, the rectangle returned
|
|
|
|
|
|
by RRGetCrtcInfo defines the bounding rectangle of the screen that is
|
|
|
|
|
|
projected to the crtc. It is this projected rectangle which must be
|
|
|
|
|
|
within the area of the screen when the mode is set.
|
2008-02-15 15:49:35 -08:00
|
|
|
|
|
|
|
|
|
|
┌───
|
|
|
|
|
|
RRGetCrtcTransform
|
|
|
|
|
|
crtc: CRTC
|
|
|
|
|
|
▶
|
|
|
|
|
|
pending-transform: TRANSFORM
|
2008-03-15 00:32:35 -07:00
|
|
|
|
pending-filter: STRING8
|
|
|
|
|
|
pending-values: LISTofFIXED
|
2008-02-15 15:49:35 -08:00
|
|
|
|
current-transform: TRANSFORM
|
2008-03-15 00:32:35 -07:00
|
|
|
|
current-filter: STRING8
|
|
|
|
|
|
current-values: LISTofFIXED
|
2008-02-15 15:49:35 -08:00
|
|
|
|
└───
|
|
|
|
|
|
|
2008-12-03 13:36:00 -05:00
|
|
|
|
This request returns the pending and current transforms for the
|
|
|
|
|
|
specified CRTC. The pending transform will be the same as the current
|
|
|
|
|
|
transform if no new pending transform has been set since the last call
|
|
|
|
|
|
to RRSetCrtcConfig.
|
2008-02-15 15:49:35 -08:00
|
|
|
|
|
2008-11-28 18:29:19 +01:00
|
|
|
|
┌───
|
|
|
|
|
|
RRGetPanning
|
|
|
|
|
|
crtc: CRTC
|
|
|
|
|
|
▶
|
|
|
|
|
|
status: RRCONFIGSTATUS
|
|
|
|
|
|
timestamp: TIMESTAMP
|
|
|
|
|
|
left, top, width, height: CARD16
|
|
|
|
|
|
track_left, track_top, track_width, track_height: CARD16
|
|
|
|
|
|
border_left, border_top, border_right, border_bottom: INT16
|
|
|
|
|
|
└───
|
|
|
|
|
|
|
|
|
|
|
|
Errors: Crtc
|
|
|
|
|
|
|
|
|
|
|
|
Version 1.3 adds panning support again. If multiple crtcs are active
|
|
|
|
|
|
the panning behavior can be defined per crtc individually.
|
|
|
|
|
|
RRGetPanning returns information about the currently set panning
|
2009-02-17 13:58:19 -05:00
|
|
|
|
configuration for the specified crtc. If the CRTC does not support
|
|
|
|
|
|
panning, all fields (except timestamp) will be 0.
|
2008-11-28 18:29:19 +01:00
|
|
|
|
|
|
|
|
|
|
'timestamp' indicates when the configuration was last set.
|
|
|
|
|
|
|
|
|
|
|
|
All other entries are explained for RRSetPanning.
|
|
|
|
|
|
|
|
|
|
|
|
┌───
|
|
|
|
|
|
RRSetPanning
|
|
|
|
|
|
crtc: CRTC
|
|
|
|
|
|
timestamp: TIMESTAMP
|
|
|
|
|
|
left, top, width, height: CARD16
|
|
|
|
|
|
track_left, track_top, track_width, track_height: CARD16
|
|
|
|
|
|
border_left, border_top, border_right, border_bottom: INT16
|
|
|
|
|
|
▶
|
|
|
|
|
|
status: RRCONFIGSTATUS
|
|
|
|
|
|
new-timestamp: TIMESTAMP
|
|
|
|
|
|
└───
|
|
|
|
|
|
Errors: Crtc, Match
|
|
|
|
|
|
|
2008-12-04 15:44:12 +01:00
|
|
|
|
This request sets the panning parameters. As soon as panning is
|
|
|
|
|
|
enabled, the CRTC position can change with every pointer move.
|
|
|
|
|
|
RRCrtcChangeNotify events are sent to the clients requesting those.
|
|
|
|
|
|
|
2008-11-28 18:29:19 +01:00
|
|
|
|
If 'timestamp' is less than the time when the configuration was last
|
|
|
|
|
|
successfully set, the request is ignored and InvalidTime returned in
|
|
|
|
|
|
status.
|
|
|
|
|
|
|
2008-12-08 14:40:07 +01:00
|
|
|
|
┌──┳━━━━━━━━━━━━━━┳─────┬ ─ ─ ─ ─ ─ ┐
|
|
|
|
|
|
│ ┃ CRTC ┃ │
|
|
|
|
|
|
│ ┃ ┃ │ │
|
|
|
|
|
|
│ ┃ X┃→ │
|
|
|
|
|
|
│ ┃ ┃ │ │ framebuffer
|
|
|
|
|
|
│ ┗━━━━━━━━━━━━━━┛ │
|
|
|
|
|
|
│ │ │
|
|
|
|
|
|
│panning area │
|
|
|
|
|
|
└───────────────────────┴ ─ ─ ─ ─ ─ ┘
|
|
|
|
|
|
|
2008-11-28 18:29:19 +01:00
|
|
|
|
'left', 'top', 'width', and 'height' contain the total panning area
|
2008-12-04 15:44:12 +01:00
|
|
|
|
for this CRTC. 'width' has to be larger than or equal to the CRTC's
|
|
|
|
|
|
width or 0, and 'left'+'width' must be within the screen size, else a
|
|
|
|
|
|
Match error results. Equivalent restrictions for the height exist.
|
|
|
|
|
|
'width' or 'height' set to 0 indicate that panning should be disabled
|
|
|
|
|
|
on the according axis. Setting 'width'/'height' to the CRTC's
|
|
|
|
|
|
width/height will disable panning on the X/Y axis as well, but
|
|
|
|
|
|
RRSetScreenSize will silently enable panning if the screen size is
|
|
|
|
|
|
increased. This does not happen if set to 0.
|
2008-11-28 18:29:19 +01:00
|
|
|
|
|
2008-12-08 14:40:07 +01:00
|
|
|
|
┌────────┳━━━━━━━━━━━━━━┳ ─ ─ ─ ─ ─ ┐
|
|
|
|
|
|
│ ┃ CRTC ┃
|
|
|
|
|
|
│ ┃ ┃ │
|
|
|
|
|
|
│ ┃ ┃
|
|
|
|
|
|
│ ┃ ┃ │ tracking area
|
|
|
|
|
|
│ ┗━━━━━━━━━━━━━━┫ X
|
|
|
|
|
|
│ ↓ │ ↓ │
|
|
|
|
|
|
│panning area │
|
|
|
|
|
|
└───────────────────────┴ ─ ─ ─ ─ ─ ┘
|
|
|
|
|
|
|
2008-11-28 18:29:19 +01:00
|
|
|
|
'track_left', 'track_top', 'track_width', and 'track_height' contain
|
|
|
|
|
|
the pointer area for which the panning region is updated. For normal
|
|
|
|
|
|
use cases it should enclose the panning area minus borders, and is
|
|
|
|
|
|
typically set to either the panning area minus borders, or to the
|
|
|
|
|
|
total screen size. If set to the total screen size, the CRTC will pan
|
|
|
|
|
|
in the remaining axis even if the pointer is outside the panning area
|
2008-12-08 14:40:07 +01:00
|
|
|
|
on a different CRTC, as shown in the figure above. If the pointer is
|
2008-12-11 17:15:15 +01:00
|
|
|
|
outside the tracking area, the CRTC will not pan. Zero can be used as
|
|
|
|
|
|
an alias for the total screen size.
|
2008-12-08 14:40:07 +01:00
|
|
|
|
|
|
|
|
|
|
┌──┳━━━━━━━━━━━━━━┳────────────┐
|
|
|
|
|
|
│ ┃ CRTC ┃ │
|
|
|
|
|
|
│ ┃ ┃ │
|
|
|
|
|
|
│ ┃ ┃→ │
|
|
|
|
|
|
│ ┃ X←→┃ │
|
|
|
|
|
|
│ ┃ border_right │
|
|
|
|
|
|
│ ┗━━━━━━━━━━━━━━┛ │
|
|
|
|
|
|
│ │
|
|
|
|
|
|
│panning area │
|
|
|
|
|
|
└──────────────────────────────┘
|
2008-11-28 18:29:19 +01:00
|
|
|
|
|
|
|
|
|
|
'border_left', 'border_top', 'border_right', and 'border_bottom'
|
|
|
|
|
|
define the distances from the CRTC borders that will activate panning
|
|
|
|
|
|
if the pointer hits them. If the borders are 0, the screen will pan
|
|
|
|
|
|
when the pointer hits the CRTC borders (behavior of pre-RandR Xserver
|
|
|
|
|
|
panning). If the borders are positive, the screen will pan when the
|
|
|
|
|
|
pointer gets close to the CRTC borders, if they are negative, the
|
2008-12-08 14:40:07 +01:00
|
|
|
|
screen will only pan when the pointer is already way past the CRTC
|
2008-12-04 15:44:12 +01:00
|
|
|
|
borders. Negative values might confuse users and disable panning to
|
|
|
|
|
|
the very edges of the screen. Thus they are discouraged.
|
2008-11-28 18:29:19 +01:00
|
|
|
|
border_left + border_right has to be lower or equal than the CRTC's
|
|
|
|
|
|
width, else a Match error results. An equivalent restriction for the
|
|
|
|
|
|
height exists.
|
|
|
|
|
|
|
2008-12-04 15:44:12 +01:00
|
|
|
|
Screen size changes update the panning and the tracking areas to the
|
|
|
|
|
|
new size. Both screen size changes and mode changes clamp these areas
|
|
|
|
|
|
to the current CRTC size. In these cases panning borders are disabled
|
|
|
|
|
|
if their requirements are no longer met.
|
2008-11-28 18:29:19 +01:00
|
|
|
|
|
|
|
|
|
|
When this request succeeds, 'status' contains Success and the
|
|
|
|
|
|
requested changes to configuration will have been made.
|
|
|
|
|
|
|
|
|
|
|
|
'new-time-stamp' contains the time at which this request was
|
|
|
|
|
|
executed.
|
|
|
|
|
|
|
2008-12-10 11:15:48 -05:00
|
|
|
|
┌───
|
|
|
|
|
|
RRSetOutputPrimary
|
|
|
|
|
|
window: WINDOW
|
|
|
|
|
|
output: OUTPUT
|
|
|
|
|
|
└───
|
|
|
|
|
|
Errors: Match, Output, Window
|
|
|
|
|
|
|
|
|
|
|
|
RRSetOutputPrimary marks 'output' as the primary output for the
|
|
|
|
|
|
screen with the same root window as 'window'. This output's CRTC
|
|
|
|
|
|
will be sorted to the front of the list in Xinerama and RANDR
|
|
|
|
|
|
geometry requests for the benefit of older applications. The
|
|
|
|
|
|
default primary output is None, and None is a legal value to pass
|
|
|
|
|
|
to RRSetOutputPrimary. This request is expected to be used by
|
|
|
|
|
|
desktop environments to mark the screen that should hold the primary
|
|
|
|
|
|
menu bar or panel.
|
|
|
|
|
|
|
|
|
|
|
|
As this changes the logical layout of the screen, ConfigureNotify
|
|
|
|
|
|
and RRScreenChangeNotify will be generated on the appropriate root
|
|
|
|
|
|
window when the primary output is changed by this call. This request
|
|
|
|
|
|
also generates RROutputChangeNotify events on the outputs that gained
|
|
|
|
|
|
and lost primary status.
|
|
|
|
|
|
|
|
|
|
|
|
If an output is disconnected asynchronously (eg. due to recabling),
|
|
|
|
|
|
the primary status does not change, but RROutputChangeNotify events
|
|
|
|
|
|
will be generated if the hardware is capable of detecting this;
|
|
|
|
|
|
clients are expected to reconfigure if appropriate.
|
|
|
|
|
|
|
|
|
|
|
|
If an output is deleted (eg. due to device hotplug), the server will
|
|
|
|
|
|
act as though None was passed to RRSetOutputPrimary, including
|
|
|
|
|
|
generating the appropriate events.
|
|
|
|
|
|
|
|
|
|
|
|
┌───
|
|
|
|
|
|
RRGetOutputPrimary
|
|
|
|
|
|
window: WINDOW
|
|
|
|
|
|
▶
|
|
|
|
|
|
output: OUTPUT
|
|
|
|
|
|
└───
|
|
|
|
|
|
Errors: Window
|
|
|
|
|
|
|
2009-04-01 11:47:52 -04:00
|
|
|
|
RRGetOutputPrimary returns the primary output for the screen.
|
2008-12-10 11:15:48 -05:00
|
|
|
|
|
2010-12-05 20:30:43 -08:00
|
|
|
|
❧❧❧❧❧❧❧❧❧❧❧
|
2006-09-12 16:48:22 -07:00
|
|
|
|
|
randr: add provider object (v8)
A provider object represents a GPU or virtual device that provides
rendering or output services to the X server. This protocol
allow controlling provider objects for output and offload slave devices.
v1.1: fix typo add missing define
v2: rename nProperties back to nAtoms, makes server simpler to c-n-p,
add missing Get request/reply
v3: bring back configure property, no point in diverging from the
output property code without good reason.
also fix typo pointed out on irc by rei4dan.
v3.1: drop cut-n-paste, increase RRNumberRequests
v4: reviewed by Aaron, address comments:
Fix provider error code
add missing notify, remove dri2 references, fix c-n-p issues.
v5: add provider change notify event with current role.
v5.1: fix cut-n-paste
v6:
document flags, fix whitespace, add better errors for SetProviderRoles,
add new events, fix pending language.
v6.1: add missing change notify event struct + missing padding
v7: fix a bunch more tab/spaces, add appendix sections for requests, events
and errors, remove multimaster flag in favour of max master counter,
move some members around to follow other events.
v7.1 fix maxMaster + wrong comment, one whitespace
v7.2 bump to being randr 1.4, fix some too generic names.
v7.3 remove dynamic flag, fix some language
v8 overhaul complete protocol, remove set provider roles, add specific
methods for setting offload sinks and output sources, add a list
of associated providers into the get provider info struct.
Earlier-review-by: Aaron Plattner <aplattner@nvidia.com>
Reviewed-by: Keith Packard <keithp@keithp.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
2012-01-20 17:38:16 +00:00
|
|
|
|
7.4 Extension Requests added in version 1.4 of the extension.
|
|
|
|
|
|
|
|
|
|
|
|
┌───
|
|
|
|
|
|
RRGetProviders
|
|
|
|
|
|
window : WINDOW
|
|
|
|
|
|
▶
|
|
|
|
|
|
timestamp: TIMESTAMP
|
|
|
|
|
|
providers: LISTofPROVIDER
|
|
|
|
|
|
└───
|
|
|
|
|
|
Errors: Window
|
|
|
|
|
|
|
2012-08-26 18:58:06 -07:00
|
|
|
|
RRGetProviders returns the list of providers connected to the screen
|
randr: add provider object (v8)
A provider object represents a GPU or virtual device that provides
rendering or output services to the X server. This protocol
allow controlling provider objects for output and offload slave devices.
v1.1: fix typo add missing define
v2: rename nProperties back to nAtoms, makes server simpler to c-n-p,
add missing Get request/reply
v3: bring back configure property, no point in diverging from the
output property code without good reason.
also fix typo pointed out on irc by rei4dan.
v3.1: drop cut-n-paste, increase RRNumberRequests
v4: reviewed by Aaron, address comments:
Fix provider error code
add missing notify, remove dri2 references, fix c-n-p issues.
v5: add provider change notify event with current role.
v5.1: fix cut-n-paste
v6:
document flags, fix whitespace, add better errors for SetProviderRoles,
add new events, fix pending language.
v6.1: add missing change notify event struct + missing padding
v7: fix a bunch more tab/spaces, add appendix sections for requests, events
and errors, remove multimaster flag in favour of max master counter,
move some members around to follow other events.
v7.1 fix maxMaster + wrong comment, one whitespace
v7.2 bump to being randr 1.4, fix some too generic names.
v7.3 remove dynamic flag, fix some language
v8 overhaul complete protocol, remove set provider roles, add specific
methods for setting offload sinks and output sources, add a list
of associated providers into the get provider info struct.
Earlier-review-by: Aaron Plattner <aplattner@nvidia.com>
Reviewed-by: Keith Packard <keithp@keithp.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
2012-01-20 17:38:16 +00:00
|
|
|
|
associated with 'window'.
|
|
|
|
|
|
|
|
|
|
|
|
'timestamp' indicates when the configuration was last set.
|
|
|
|
|
|
|
|
|
|
|
|
'providers' contains the list of PROVIDERs associated with the
|
|
|
|
|
|
screen.
|
|
|
|
|
|
|
|
|
|
|
|
┌───
|
|
|
|
|
|
RRGetProviderInfo
|
|
|
|
|
|
provider: PROVIDER
|
|
|
|
|
|
▶
|
|
|
|
|
|
capabilities: PROVIDER_CAPS
|
|
|
|
|
|
name: STRING
|
|
|
|
|
|
crtcs: LISTofCRTC
|
|
|
|
|
|
outputs: LISTofOUTPUT
|
|
|
|
|
|
associated_providers: LISTofPROVIDERS
|
|
|
|
|
|
associated_provider_capability: LISTofPROVIDER_CAPS
|
|
|
|
|
|
└───
|
|
|
|
|
|
Errors: Provider
|
|
|
|
|
|
|
|
|
|
|
|
RRGetProviderInfo return information about the specified provider.
|
2012-08-26 18:58:06 -07:00
|
|
|
|
The capabilities of the current provider are returned, along with
|
randr: add provider object (v8)
A provider object represents a GPU or virtual device that provides
rendering or output services to the X server. This protocol
allow controlling provider objects for output and offload slave devices.
v1.1: fix typo add missing define
v2: rename nProperties back to nAtoms, makes server simpler to c-n-p,
add missing Get request/reply
v3: bring back configure property, no point in diverging from the
output property code without good reason.
also fix typo pointed out on irc by rei4dan.
v3.1: drop cut-n-paste, increase RRNumberRequests
v4: reviewed by Aaron, address comments:
Fix provider error code
add missing notify, remove dri2 references, fix c-n-p issues.
v5: add provider change notify event with current role.
v5.1: fix cut-n-paste
v6:
document flags, fix whitespace, add better errors for SetProviderRoles,
add new events, fix pending language.
v6.1: add missing change notify event struct + missing padding
v7: fix a bunch more tab/spaces, add appendix sections for requests, events
and errors, remove multimaster flag in favour of max master counter,
move some members around to follow other events.
v7.1 fix maxMaster + wrong comment, one whitespace
v7.2 bump to being randr 1.4, fix some too generic names.
v7.3 remove dynamic flag, fix some language
v8 overhaul complete protocol, remove set provider roles, add specific
methods for setting offload sinks and output sources, add a list
of associated providers into the get provider info struct.
Earlier-review-by: Aaron Plattner <aplattner@nvidia.com>
Reviewed-by: Keith Packard <keithp@keithp.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
2012-01-20 17:38:16 +00:00
|
|
|
|
the list of providers currently associated with this provider and
|
|
|
|
|
|
the capability they are associated with. It also provides the list
|
|
|
|
|
|
of crtcs and outputs that this provider is responsible for.
|
|
|
|
|
|
|
|
|
|
|
|
'name' is a UTF-8 encoded string to be presented to the user to
|
|
|
|
|
|
indicate the device or driver supplied name.
|
|
|
|
|
|
|
|
|
|
|
|
┌───
|
|
|
|
|
|
RRSetProviderOffloadSink
|
|
|
|
|
|
provider: PROVIDER
|
|
|
|
|
|
sink_provider: PROVIDER
|
2012-08-27 23:59:02 -07:00
|
|
|
|
config-timestamp: TIMESTAMP
|
randr: add provider object (v8)
A provider object represents a GPU or virtual device that provides
rendering or output services to the X server. This protocol
allow controlling provider objects for output and offload slave devices.
v1.1: fix typo add missing define
v2: rename nProperties back to nAtoms, makes server simpler to c-n-p,
add missing Get request/reply
v3: bring back configure property, no point in diverging from the
output property code without good reason.
also fix typo pointed out on irc by rei4dan.
v3.1: drop cut-n-paste, increase RRNumberRequests
v4: reviewed by Aaron, address comments:
Fix provider error code
add missing notify, remove dri2 references, fix c-n-p issues.
v5: add provider change notify event with current role.
v5.1: fix cut-n-paste
v6:
document flags, fix whitespace, add better errors for SetProviderRoles,
add new events, fix pending language.
v6.1: add missing change notify event struct + missing padding
v7: fix a bunch more tab/spaces, add appendix sections for requests, events
and errors, remove multimaster flag in favour of max master counter,
move some members around to follow other events.
v7.1 fix maxMaster + wrong comment, one whitespace
v7.2 bump to being randr 1.4, fix some too generic names.
v7.3 remove dynamic flag, fix some language
v8 overhaul complete protocol, remove set provider roles, add specific
methods for setting offload sinks and output sources, add a list
of associated providers into the get provider info struct.
Earlier-review-by: Aaron Plattner <aplattner@nvidia.com>
Reviewed-by: Keith Packard <keithp@keithp.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
2012-01-20 17:38:16 +00:00
|
|
|
|
└───
|
|
|
|
|
|
Errors: Provider
|
|
|
|
|
|
|
|
|
|
|
|
RRSetOffloadSink sets the offload sink for this provider to the
|
|
|
|
|
|
specified provider.
|
|
|
|
|
|
|
|
|
|
|
|
┌───
|
|
|
|
|
|
RRSetProviderOutputSource
|
|
|
|
|
|
provider: PROVIDER
|
|
|
|
|
|
source_provider: PROVIDER
|
2012-08-27 23:59:02 -07:00
|
|
|
|
config-timestamp: TIMESTAMP
|
randr: add provider object (v8)
A provider object represents a GPU or virtual device that provides
rendering or output services to the X server. This protocol
allow controlling provider objects for output and offload slave devices.
v1.1: fix typo add missing define
v2: rename nProperties back to nAtoms, makes server simpler to c-n-p,
add missing Get request/reply
v3: bring back configure property, no point in diverging from the
output property code without good reason.
also fix typo pointed out on irc by rei4dan.
v3.1: drop cut-n-paste, increase RRNumberRequests
v4: reviewed by Aaron, address comments:
Fix provider error code
add missing notify, remove dri2 references, fix c-n-p issues.
v5: add provider change notify event with current role.
v5.1: fix cut-n-paste
v6:
document flags, fix whitespace, add better errors for SetProviderRoles,
add new events, fix pending language.
v6.1: add missing change notify event struct + missing padding
v7: fix a bunch more tab/spaces, add appendix sections for requests, events
and errors, remove multimaster flag in favour of max master counter,
move some members around to follow other events.
v7.1 fix maxMaster + wrong comment, one whitespace
v7.2 bump to being randr 1.4, fix some too generic names.
v7.3 remove dynamic flag, fix some language
v8 overhaul complete protocol, remove set provider roles, add specific
methods for setting offload sinks and output sources, add a list
of associated providers into the get provider info struct.
Earlier-review-by: Aaron Plattner <aplattner@nvidia.com>
Reviewed-by: Keith Packard <keithp@keithp.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
2012-01-20 17:38:16 +00:00
|
|
|
|
└───
|
|
|
|
|
|
Errors: Provider
|
|
|
|
|
|
|
|
|
|
|
|
RRSetOutputSource sets the output source for this provider to the
|
|
|
|
|
|
specified provider.
|
|
|
|
|
|
|
|
|
|
|
|
┌───
|
|
|
|
|
|
RRListProviderProperties
|
|
|
|
|
|
provider:PROVIDERS
|
|
|
|
|
|
▶
|
2012-07-09 22:18:20 -07:00
|
|
|
|
atoms: LISTofATOM
|
randr: add provider object (v8)
A provider object represents a GPU or virtual device that provides
rendering or output services to the X server. This protocol
allow controlling provider objects for output and offload slave devices.
v1.1: fix typo add missing define
v2: rename nProperties back to nAtoms, makes server simpler to c-n-p,
add missing Get request/reply
v3: bring back configure property, no point in diverging from the
output property code without good reason.
also fix typo pointed out on irc by rei4dan.
v3.1: drop cut-n-paste, increase RRNumberRequests
v4: reviewed by Aaron, address comments:
Fix provider error code
add missing notify, remove dri2 references, fix c-n-p issues.
v5: add provider change notify event with current role.
v5.1: fix cut-n-paste
v6:
document flags, fix whitespace, add better errors for SetProviderRoles,
add new events, fix pending language.
v6.1: add missing change notify event struct + missing padding
v7: fix a bunch more tab/spaces, add appendix sections for requests, events
and errors, remove multimaster flag in favour of max master counter,
move some members around to follow other events.
v7.1 fix maxMaster + wrong comment, one whitespace
v7.2 bump to being randr 1.4, fix some too generic names.
v7.3 remove dynamic flag, fix some language
v8 overhaul complete protocol, remove set provider roles, add specific
methods for setting offload sinks and output sources, add a list
of associated providers into the get provider info struct.
Earlier-review-by: Aaron Plattner <aplattner@nvidia.com>
Reviewed-by: Keith Packard <keithp@keithp.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
2012-01-20 17:38:16 +00:00
|
|
|
|
└───
|
|
|
|
|
|
Errors: Provider
|
|
|
|
|
|
|
|
|
|
|
|
This request returns the atoms of properties currently defined on
|
|
|
|
|
|
the provider.
|
|
|
|
|
|
|
|
|
|
|
|
┌───
|
|
|
|
|
|
RRQueryProviderProperty
|
|
|
|
|
|
provider: PROVIDER
|
|
|
|
|
|
property: ATOM
|
|
|
|
|
|
▶
|
|
|
|
|
|
pending: BOOL
|
|
|
|
|
|
range: BOOL
|
|
|
|
|
|
immutable: BOOL
|
|
|
|
|
|
valid-values: LISTofINT32
|
|
|
|
|
|
└───
|
|
|
|
|
|
Errors: Name, Atom, Provider
|
|
|
|
|
|
|
|
|
|
|
|
If the specified property does not exist for the specified provider,
|
|
|
|
|
|
then a Name error is returned.
|
|
|
|
|
|
|
|
|
|
|
|
If 'pending' is TRUE, changes made to property values with
|
|
|
|
|
|
RRChangeProviderProperty will be saved in the pending property value
|
|
|
|
|
|
and be automatically copied to the current value on the next
|
|
|
|
|
|
RRSetCrtcConfig request on a crtc attached to that provider.
|
|
|
|
|
|
If 'pending' is FALSE, changes are copied immediately.
|
|
|
|
|
|
|
|
|
|
|
|
If 'range' is TRUE, then the valid-values list will contain
|
|
|
|
|
|
precisely two values indicating the minimum and maximum allowed
|
|
|
|
|
|
values. If 'range' is FALSE, then the valid-values list will contain
|
|
|
|
|
|
the list of possible values; attempts to set other values will
|
|
|
|
|
|
result in a Value error.
|
|
|
|
|
|
|
|
|
|
|
|
If 'immutable' is TRUE, then the property configuration cannot be
|
|
|
|
|
|
changed by clients. Immutable properties are interpreted by the X
|
|
|
|
|
|
server.
|
|
|
|
|
|
|
|
|
|
|
|
┌───
|
|
|
|
|
|
RRConfigureProviderProperty
|
|
|
|
|
|
provider: PROVIDER
|
|
|
|
|
|
property: ATOM
|
|
|
|
|
|
pending: BOOL
|
|
|
|
|
|
range: BOOL
|
|
|
|
|
|
valid-values: LISTofINT32
|
|
|
|
|
|
└───
|
|
|
|
|
|
Errors: Access, Name, Atom, Provider
|
|
|
|
|
|
|
|
|
|
|
|
If the specified property is 'immutable', an Access error is
|
|
|
|
|
|
returned.
|
|
|
|
|
|
|
|
|
|
|
|
Otherwise, the configuration of the specified property is changed to
|
|
|
|
|
|
the values provided in this request.
|
|
|
|
|
|
|
|
|
|
|
|
If the specified property does not exist for the specified provider,
|
|
|
|
|
|
it is created with an empty value and None type.
|
|
|
|
|
|
|
|
|
|
|
|
┌───
|
|
|
|
|
|
RRChangeProviderProperty
|
|
|
|
|
|
provider: PROVIDER
|
|
|
|
|
|
property, type: ATOM
|
|
|
|
|
|
format: {8, 16, 32}
|
|
|
|
|
|
mode: { Replace, Prepend, Append }
|
|
|
|
|
|
data: LISTofINT8 or LISTofINT16 or LISTofINT32
|
|
|
|
|
|
└───
|
|
|
|
|
|
Errors: Alloc, Atom, Match, Value, Provider
|
|
|
|
|
|
|
|
|
|
|
|
This request alters the value of the property for the specified
|
|
|
|
|
|
provider. If the property is marked as a 'pending' property, only the
|
|
|
|
|
|
pending value of the property is changed. Otherwise, changes are
|
|
|
|
|
|
reflected in both the pending and current values of the property.
|
|
|
|
|
|
The type is uninterpreted by the server. The format specifies
|
|
|
|
|
|
whether the data should be viewed as a list of 8-bit, 16-bit, or
|
|
|
|
|
|
32-bit quantities so that the server can correctly byte-swap as
|
|
|
|
|
|
necessary.
|
|
|
|
|
|
|
|
|
|
|
|
If the mode is Replace, the previous property value is discarded.
|
|
|
|
|
|
If the mode is Prepend or Append, then the type and format must
|
|
|
|
|
|
match the existing property value (or a Match error results). If
|
|
|
|
|
|
the property is undefined, it is treated as defined with the correct
|
|
|
|
|
|
type and format with zero-length data.
|
|
|
|
|
|
|
|
|
|
|
|
For Prepend, the data is tacked on to the beginning of the existing
|
|
|
|
|
|
data, and for Append, it is tacked on to the end of the existing data.
|
|
|
|
|
|
|
|
|
|
|
|
This request generates a ProviderPropertyNotify
|
|
|
|
|
|
|
|
|
|
|
|
The lifetime of a property is not tied to the storing client.
|
|
|
|
|
|
Properties remain until explicitly deleted, until the provider is
|
|
|
|
|
|
destroyed, or until server reset (see section 10).
|
|
|
|
|
|
|
|
|
|
|
|
The maximum size of a property is server-dependent and may vary
|
|
|
|
|
|
dynamically.
|
|
|
|
|
|
┌───
|
|
|
|
|
|
RRDeleteProviderProperty
|
|
|
|
|
|
provider: Provider
|
|
|
|
|
|
property: ATOM
|
|
|
|
|
|
└───
|
|
|
|
|
|
Errors: Atom, Provider
|
|
|
|
|
|
|
|
|
|
|
|
This request deletes the property from the specified provider if the
|
|
|
|
|
|
property exists and generates a ProviderPropertyNotify event unless
|
|
|
|
|
|
the property does not exist.
|
|
|
|
|
|
|
|
|
|
|
|
┌───
|
|
|
|
|
|
RRGetProviderProperty
|
|
|
|
|
|
provider: PROVIDER
|
|
|
|
|
|
property: ATOM
|
|
|
|
|
|
type: ATOM or AnyPropertyType
|
|
|
|
|
|
long-offset, long-length: CARD32
|
|
|
|
|
|
delete: BOOL
|
|
|
|
|
|
pending: BOOL
|
|
|
|
|
|
▶
|
|
|
|
|
|
type: ATOM or None
|
|
|
|
|
|
format: {0, 8, 16, 32}
|
|
|
|
|
|
bytes-after: CARD32
|
|
|
|
|
|
value: LISTofINT8 or LISTofINT16 or LISTofINT32
|
|
|
|
|
|
└───
|
|
|
|
|
|
Errors: Atom, Value, Provider
|
|
|
|
|
|
|
|
|
|
|
|
If the specified property does not exist for the specified provider,
|
|
|
|
|
|
then the return type is None, the format and bytes-after are zero,
|
|
|
|
|
|
and the value is empty. The delete argument is ignored in this
|
|
|
|
|
|
case.
|
|
|
|
|
|
|
|
|
|
|
|
If the specified property exists but its type does not match the
|
|
|
|
|
|
specified type, then the return type is the actual type of the
|
|
|
|
|
|
property, the format is the actual format of the property (never
|
|
|
|
|
|
zero), the bytes-after is the length of the property in bytes (even
|
|
|
|
|
|
if the format is 16 or 32), and the value is empty. The delete
|
|
|
|
|
|
argument is ignored in this case.
|
|
|
|
|
|
|
|
|
|
|
|
If the specified property exists and either AnyPropertyType is
|
|
|
|
|
|
specified or the specified type matches the actual type of the
|
|
|
|
|
|
property, then the return type is the actual type of the property,
|
|
|
|
|
|
the format is the actual format of the property (never zero), and
|
|
|
|
|
|
the bytes-after and value are as follows, given:
|
|
|
|
|
|
|
|
|
|
|
|
N = actual length of the stored property in bytes
|
|
|
|
|
|
(even if the format is 16 or 32)
|
|
|
|
|
|
I = 4 × offset
|
|
|
|
|
|
T = N - I
|
|
|
|
|
|
L = MINIMUM(T, 4 × long-length)
|
|
|
|
|
|
A = N - (I + L)
|
|
|
|
|
|
|
|
|
|
|
|
If 'pending' is true, and if the property holds a pending value,
|
|
|
|
|
|
then the value returned will be the pending value of the property
|
|
|
|
|
|
rather than the current value. The returned value starts at byte
|
|
|
|
|
|
index I in the property (indexing from 0), and its length in bytes
|
|
|
|
|
|
is L. However, it is a Value error if long-offset is given such
|
|
|
|
|
|
that L is negative. The value of bytes-after is A, giving the
|
|
|
|
|
|
number of trailing unread bytes in the stored property. If delete
|
|
|
|
|
|
is True and the bytes-after is zero, the property is also deleted
|
|
|
|
|
|
from the provider, and a RRProviderPropertyNotify event is generated.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
❧❧❧❧❧❧❧❧❧❧❧
|
2003-11-14 16:48:43 +00:00
|
|
|
|
8. Extension Events
|
|
|
|
|
|
|
|
|
|
|
|
Clients MAY select for ConfigureNotify on the root window to be
|
2006-09-11 21:29:39 -07:00
|
|
|
|
informed of screen changes. This may be advantageous if all your
|
2007-02-18 21:02:10 -08:00
|
|
|
|
client needs to know is the size of the root window, as it avoids
|
2003-11-14 16:48:43 +00:00
|
|
|
|
round trips to set up the extension.
|
|
|
|
|
|
|
|
|
|
|
|
RRScreenChangeNotify is sent if RRSelectInput has requested it
|
|
|
|
|
|
whenever properties of the screen change, which may be due to external
|
2006-09-12 18:40:03 -07:00
|
|
|
|
factors, such as re-cabling a monitor, etc.
|
2003-11-14 16:48:43 +00:00
|
|
|
|
|
2006-09-12 16:48:22 -07:00
|
|
|
|
┌───
|
|
|
|
|
|
RRScreenChangeNotify
|
2003-11-14 16:48:43 +00:00
|
|
|
|
|
|
|
|
|
|
rotation: ROTATION; new rotation
|
2006-09-12 18:40:03 -07:00
|
|
|
|
sequenceNumber: CARD16 low 16 bits of request seq. number
|
2003-11-14 16:48:43 +00:00
|
|
|
|
timestamp: TIMESTAMP time screen was changed
|
|
|
|
|
|
configTimestamp: TIMESTAMP time config data was changed
|
|
|
|
|
|
root: WINDOW root window of screen
|
|
|
|
|
|
window: WINDOW window requesting notification
|
2008-02-15 15:49:35 -08:00
|
|
|
|
size-id: SIZEID index of new SCREENSIZE
|
2003-11-14 16:48:43 +00:00
|
|
|
|
subpixelOrder: SUBPIXELORDER order of subpixels
|
2008-02-15 15:49:35 -08:00
|
|
|
|
widthInPixels: CARD16 width in pixels of the new SCREENSIZE
|
|
|
|
|
|
heightInPixels: CARD16 height in pixels of the new SCREENSIZE
|
|
|
|
|
|
widthInMillimeters: CARD16 width in mm of the new SCREENSIZE
|
|
|
|
|
|
heightInMillimeters: CARD16 height in mm of the new SCREENSIZE
|
2006-09-12 16:48:22 -07:00
|
|
|
|
└───
|
2006-06-24 16:58:16 -07:00
|
|
|
|
This event is generated whenever the screen configuration is changed
|
|
|
|
|
|
and sent to requesting clients. 'timestamp' indicates when the
|
2006-09-11 21:29:39 -07:00
|
|
|
|
screen configuration was changed. 'configTimestamp' says when the
|
2006-06-24 16:58:16 -07:00
|
|
|
|
last time the configuration was changed. 'root' is the root of the
|
|
|
|
|
|
screen the change occurred on, 'window' is window selecting for this
|
2006-06-25 08:51:27 +02:00
|
|
|
|
event. 'size-id' contains the index of the current size.
|
2003-11-14 16:48:43 +00:00
|
|
|
|
|
|
|
|
|
|
This event is sent whenever the screen's configuration changes
|
|
|
|
|
|
or if a new screen configuration becomes available that was
|
2006-09-11 21:29:39 -07:00
|
|
|
|
not available in the past. In this case (config-timestamp in
|
2003-11-14 16:48:43 +00:00
|
|
|
|
the event not being equal to the config-timestamp returned in
|
|
|
|
|
|
the last call to RRGetScreenInfo), the client MUST call
|
|
|
|
|
|
RRGetScreenInfo to update its view of possible screen
|
|
|
|
|
|
configurations to have a correct view of possible screen
|
2006-06-24 16:58:16 -07:00
|
|
|
|
organizations.
|
2003-11-14 16:48:43 +00:00
|
|
|
|
|
|
|
|
|
|
Clients which select screen change notification events may be
|
|
|
|
|
|
sent an event immediately if the screen configuration was
|
|
|
|
|
|
changed between when they connected to the X server and
|
2006-09-11 21:29:39 -07:00
|
|
|
|
selected for notification. This is to prevent a common race
|
2003-11-14 16:48:43 +00:00
|
|
|
|
that might occur on log-in, where many applications start up
|
|
|
|
|
|
just at the time when a display manager or log in script might
|
|
|
|
|
|
be changing the screen size or configuration.
|
|
|
|
|
|
|
2008-02-15 15:49:35 -08:00
|
|
|
|
Note that the sizes in this event reflect the new SCREENSIZE and
|
|
|
|
|
|
thus will appear rotated by the 'rotation' parameter from the sizes
|
|
|
|
|
|
of the screen itself. In other words, when rotation is 90 or 270,
|
|
|
|
|
|
widthInPixels in this event will be the same as the height value
|
|
|
|
|
|
from a ConfigureNotify that reflects the same size change. This
|
|
|
|
|
|
will probably confuse developers.
|
|
|
|
|
|
|
2006-06-25 03:10:20 +02:00
|
|
|
|
8.1 Events added in version 1.2 of the RandR extension
|
|
|
|
|
|
|
2006-09-12 16:48:22 -07:00
|
|
|
|
┌───
|
|
|
|
|
|
RROutputChangeNotify:
|
2006-09-11 22:19:28 -07:00
|
|
|
|
timestamp: TIMESTAMP time screen was reconfigured
|
|
|
|
|
|
config-timestamp: TIMESTAMP time available config data was changed
|
|
|
|
|
|
window: WINDOW window requesting notification
|
2006-09-12 16:48:22 -07:00
|
|
|
|
output: OUTPUT output affected by change
|
|
|
|
|
|
crtc: CRTC connected CRTC or None
|
|
|
|
|
|
mode: MODE mode in use on CRTC or None
|
|
|
|
|
|
connection: CONNECTION connection status
|
|
|
|
|
|
└───
|
2006-09-11 22:19:28 -07:00
|
|
|
|
|
|
|
|
|
|
This event is generated whenever the available output configurations
|
|
|
|
|
|
have changed and is sent to requesting clients. 'timestamp'
|
|
|
|
|
|
indicates when the crtc configuration was changed by a client.
|
|
|
|
|
|
'config-timestamp' says when the last time the available
|
|
|
|
|
|
configurations changed. 'root' is the root of the screen the change
|
2006-09-11 22:49:15 -07:00
|
|
|
|
occurred on, 'window' is window selecting for this event. The
|
|
|
|
|
|
precise change can be detected by examining the new state of the
|
|
|
|
|
|
system.
|
2006-09-11 22:19:28 -07:00
|
|
|
|
|
2006-09-12 16:48:22 -07:00
|
|
|
|
┌───
|
2006-09-13 12:23:08 -07:00
|
|
|
|
RROutputPropertyNotify:
|
|
|
|
|
|
window: WINDOW window requesting notification
|
|
|
|
|
|
output: OUTPUT output affected by change
|
|
|
|
|
|
atom: ATOM affected property
|
|
|
|
|
|
time: TIMESTAMP time property was changed
|
|
|
|
|
|
subpixel-order: SUBPIXELORDER order of subpixels
|
|
|
|
|
|
state: { NewValue, Deleted } new property state
|
|
|
|
|
|
└───
|
|
|
|
|
|
|
|
|
|
|
|
This event is reported to clients selecting RROutputPropertyChange
|
|
|
|
|
|
on the window and is generated with state NewValue when a property
|
|
|
|
|
|
of the window is changed using RRChangeOutputProperty even when
|
|
|
|
|
|
adding zero-length data and when replacing all or part of a property
|
|
|
|
|
|
with identical data. It is generated with state Deleted when a
|
|
|
|
|
|
property of the window is deleted using either
|
|
|
|
|
|
RRDeleteOutputProperty or RRGetOutputProperty. The timestamp
|
|
|
|
|
|
indicates the server time when the property was changed.
|
|
|
|
|
|
|
|
|
|
|
|
┌───
|
|
|
|
|
|
RRCrtcChangeNotify
|
2006-06-25 03:10:20 +02:00
|
|
|
|
timestamp: TIMESTAMP time monitor was changed
|
|
|
|
|
|
window: WINDOW window requesting notification
|
2006-09-11 22:49:15 -07:00
|
|
|
|
crtc: CRTC CRTC which changed
|
2006-09-11 22:19:28 -07:00
|
|
|
|
mode: MODE new mode
|
2006-06-27 22:38:32 +02:00
|
|
|
|
rotation: ROTATION; new rotation
|
2006-09-11 22:49:15 -07:00
|
|
|
|
x: INT16 x position of CRTC within screen
|
|
|
|
|
|
y: INT16 y position of CRTC within screen
|
2011-07-27 22:57:56 -07:00
|
|
|
|
width: CARD16 width of new configuration
|
|
|
|
|
|
height: CARD16 height of new configuration
|
2006-09-12 16:48:22 -07:00
|
|
|
|
└───
|
2006-09-11 22:49:15 -07:00
|
|
|
|
This event is generated whenever the CRTC configuration is changed
|
2006-06-25 03:10:20 +02:00
|
|
|
|
and sent to requesting clients. 'timestamp' indicates when the
|
2008-02-15 15:49:35 -08:00
|
|
|
|
CRTC configuration was changed. 'window' is window selecting for this
|
|
|
|
|
|
event. 'mode' is the new mode, or None if the crtc is disabled.
|
|
|
|
|
|
'x' and 'y' mark the location in the screen where this CRTC
|
|
|
|
|
|
is reading data. 'width' and 'height' indicate the size of the
|
2011-07-27 22:57:56 -07:00
|
|
|
|
CRTC viewport, which is the mode size adjusted by the optional
|
|
|
|
|
|
Border output property described below. 'x', 'y, 'width' and
|
|
|
|
|
|
'height' are all zero when 'mode' is None.
|
2006-06-25 03:10:20 +02:00
|
|
|
|
|
|
|
|
|
|
This event is sent whenever the monitor's configuration changes
|
|
|
|
|
|
or if a new monitor configuration becomes available that was
|
2008-02-15 15:49:35 -08:00
|
|
|
|
not available in the past. In this case, the client MUST call
|
2006-09-11 21:29:39 -07:00
|
|
|
|
RRGetCrtcModes to update its view of possible monitor
|
2006-06-25 03:10:20 +02:00
|
|
|
|
configurations to have a correct view of possible monitor
|
|
|
|
|
|
organizations.
|
|
|
|
|
|
|
|
|
|
|
|
Clients which select monitor change notification events may be
|
|
|
|
|
|
sent an event immediately if the monitor configuration was
|
|
|
|
|
|
changed between when they connected to the X server and
|
2006-09-11 21:29:39 -07:00
|
|
|
|
selected for notification. This is to prevent a common race
|
2006-06-25 03:10:20 +02:00
|
|
|
|
that might occur on log-in, where many applications start up
|
|
|
|
|
|
just at the time when a display manager or log in script might
|
|
|
|
|
|
be changing the monitor size or configuration.
|
|
|
|
|
|
|
randr: add provider object (v8)
A provider object represents a GPU or virtual device that provides
rendering or output services to the X server. This protocol
allow controlling provider objects for output and offload slave devices.
v1.1: fix typo add missing define
v2: rename nProperties back to nAtoms, makes server simpler to c-n-p,
add missing Get request/reply
v3: bring back configure property, no point in diverging from the
output property code without good reason.
also fix typo pointed out on irc by rei4dan.
v3.1: drop cut-n-paste, increase RRNumberRequests
v4: reviewed by Aaron, address comments:
Fix provider error code
add missing notify, remove dri2 references, fix c-n-p issues.
v5: add provider change notify event with current role.
v5.1: fix cut-n-paste
v6:
document flags, fix whitespace, add better errors for SetProviderRoles,
add new events, fix pending language.
v6.1: add missing change notify event struct + missing padding
v7: fix a bunch more tab/spaces, add appendix sections for requests, events
and errors, remove multimaster flag in favour of max master counter,
move some members around to follow other events.
v7.1 fix maxMaster + wrong comment, one whitespace
v7.2 bump to being randr 1.4, fix some too generic names.
v7.3 remove dynamic flag, fix some language
v8 overhaul complete protocol, remove set provider roles, add specific
methods for setting offload sinks and output sources, add a list
of associated providers into the get provider info struct.
Earlier-review-by: Aaron Plattner <aplattner@nvidia.com>
Reviewed-by: Keith Packard <keithp@keithp.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
2012-01-20 17:38:16 +00:00
|
|
|
|
8.2 Events added in version 1.4 of the RandR extension
|
|
|
|
|
|
|
|
|
|
|
|
┌───
|
|
|
|
|
|
RRProviderChangeNotify:
|
|
|
|
|
|
timestamp: TIMESTAMP time screen was reconfigured
|
|
|
|
|
|
window: WINDOW window requesting notification
|
|
|
|
|
|
provider: PROVIDER provider affected by change
|
|
|
|
|
|
└───
|
|
|
|
|
|
|
|
|
|
|
|
This event is generated whenever the role for a provider has changed
|
|
|
|
|
|
and is sent to requesting clients. 'timestamp' indicates when the
|
2012-08-26 23:38:38 -07:00
|
|
|
|
provider configuration was changed by a client. 'window' is the
|
|
|
|
|
|
window selecting for this event. The precise change can be detected
|
|
|
|
|
|
by examining the new state of the system.
|
randr: add provider object (v8)
A provider object represents a GPU or virtual device that provides
rendering or output services to the X server. This protocol
allow controlling provider objects for output and offload slave devices.
v1.1: fix typo add missing define
v2: rename nProperties back to nAtoms, makes server simpler to c-n-p,
add missing Get request/reply
v3: bring back configure property, no point in diverging from the
output property code without good reason.
also fix typo pointed out on irc by rei4dan.
v3.1: drop cut-n-paste, increase RRNumberRequests
v4: reviewed by Aaron, address comments:
Fix provider error code
add missing notify, remove dri2 references, fix c-n-p issues.
v5: add provider change notify event with current role.
v5.1: fix cut-n-paste
v6:
document flags, fix whitespace, add better errors for SetProviderRoles,
add new events, fix pending language.
v6.1: add missing change notify event struct + missing padding
v7: fix a bunch more tab/spaces, add appendix sections for requests, events
and errors, remove multimaster flag in favour of max master counter,
move some members around to follow other events.
v7.1 fix maxMaster + wrong comment, one whitespace
v7.2 bump to being randr 1.4, fix some too generic names.
v7.3 remove dynamic flag, fix some language
v8 overhaul complete protocol, remove set provider roles, add specific
methods for setting offload sinks and output sources, add a list
of associated providers into the get provider info struct.
Earlier-review-by: Aaron Plattner <aplattner@nvidia.com>
Reviewed-by: Keith Packard <keithp@keithp.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
2012-01-20 17:38:16 +00:00
|
|
|
|
|
|
|
|
|
|
┌───
|
|
|
|
|
|
RRProviderPropertyNotify:
|
|
|
|
|
|
window: WINDOW window requesting notification
|
2012-08-26 18:58:06 -07:00
|
|
|
|
provider: PROVIDER provider affected by change
|
randr: add provider object (v8)
A provider object represents a GPU or virtual device that provides
rendering or output services to the X server. This protocol
allow controlling provider objects for output and offload slave devices.
v1.1: fix typo add missing define
v2: rename nProperties back to nAtoms, makes server simpler to c-n-p,
add missing Get request/reply
v3: bring back configure property, no point in diverging from the
output property code without good reason.
also fix typo pointed out on irc by rei4dan.
v3.1: drop cut-n-paste, increase RRNumberRequests
v4: reviewed by Aaron, address comments:
Fix provider error code
add missing notify, remove dri2 references, fix c-n-p issues.
v5: add provider change notify event with current role.
v5.1: fix cut-n-paste
v6:
document flags, fix whitespace, add better errors for SetProviderRoles,
add new events, fix pending language.
v6.1: add missing change notify event struct + missing padding
v7: fix a bunch more tab/spaces, add appendix sections for requests, events
and errors, remove multimaster flag in favour of max master counter,
move some members around to follow other events.
v7.1 fix maxMaster + wrong comment, one whitespace
v7.2 bump to being randr 1.4, fix some too generic names.
v7.3 remove dynamic flag, fix some language
v8 overhaul complete protocol, remove set provider roles, add specific
methods for setting offload sinks and output sources, add a list
of associated providers into the get provider info struct.
Earlier-review-by: Aaron Plattner <aplattner@nvidia.com>
Reviewed-by: Keith Packard <keithp@keithp.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
2012-01-20 17:38:16 +00:00
|
|
|
|
atom: ATOM affected property
|
|
|
|
|
|
time: TIMESTAMP time property was changed
|
|
|
|
|
|
state: { NewValue, Deleted } new property state
|
|
|
|
|
|
└───
|
|
|
|
|
|
|
|
|
|
|
|
This event is reported to clients selecting RRProviderPropertyChange
|
|
|
|
|
|
on the window and is generated with state NewValue when a property
|
|
|
|
|
|
of the window is changed using RRChangeProviderProperty even when
|
|
|
|
|
|
adding zero-length data and when replacing all or part of a property
|
|
|
|
|
|
with identical data. It is generated with state Deleted when a
|
|
|
|
|
|
property of the window is deleted using either
|
|
|
|
|
|
RRDeleteProviderProperty or RRGetProviderProperty. The timestamp
|
|
|
|
|
|
indicates the server time when the property was changed.
|
|
|
|
|
|
|
|
|
|
|
|
┌───
|
|
|
|
|
|
RRResourceChangeNotify:
|
|
|
|
|
|
window: WINDOW window requesting notification
|
|
|
|
|
|
time: TIMESTAMP time property was changed
|
|
|
|
|
|
└───
|
|
|
|
|
|
|
|
|
|
|
|
This event is reported to clients selecting RRResourceChange
|
|
|
|
|
|
on the window and is generated whenever the set of available
|
|
|
|
|
|
RandR resources associated with the screen has changed, either
|
|
|
|
|
|
created or destroyed. Querying the list of available resources
|
|
|
|
|
|
with RRGetScreenResources and RRGetProviders will return the new set.
|
|
|
|
|
|
|
2010-12-05 20:30:43 -08:00
|
|
|
|
❧❧❧❧❧❧❧❧❧❧❧
|
2006-09-12 16:48:22 -07:00
|
|
|
|
|
2008-12-16 18:09:08 +01:00
|
|
|
|
9. Properties
|
|
|
|
|
|
|
|
|
|
|
|
Properties are used for output specific parameters, and for announcing
|
|
|
|
|
|
static or rarely changing data. Announced data is typically
|
|
|
|
|
|
immutable. Properties are also used for evaluating new parameters
|
|
|
|
|
|
before adding them to the RandR protocol.
|
|
|
|
|
|
|
|
|
|
|
|
The following properties are hereby declared official, and drivers SHOULD
|
|
|
|
|
|
prefix driver specific properties with '_', unless they are planned to be
|
|
|
|
|
|
added to this specification. List values, that are not declared by the table
|
|
|
|
|
|
below, and will remain driver specific or are not planned to be added to this
|
|
|
|
|
|
specification, SHOULD be prefixed with "_" as well in order to avoid name
|
|
|
|
|
|
space or semantics clashes with future extensions of these values.
|
|
|
|
|
|
|
|
|
|
|
|
Beginning with version 1.3 of the RandR extension, certain properties
|
|
|
|
|
|
are mandatory and MUST be provided by implementations. Earlier
|
|
|
|
|
|
versions of the RandR extension MAY provide these properties as well,
|
|
|
|
|
|
as long as the semantics are not altered. Clients SHOULD fall back
|
|
|
|
|
|
gracefully to lower version functionality, though, if the driver
|
|
|
|
|
|
doesn't handle a mandatory property correctly.
|
|
|
|
|
|
|
|
|
|
|
|
9.1 Known properties
|
|
|
|
|
|
|
2009-08-18 12:08:25 +02:00
|
|
|
|
"Backlight" aka RR_PROPERTY_BACKLIGHT
|
2011-08-02 14:58:31 -07:00
|
|
|
|
Type: INTEGER
|
|
|
|
|
|
Format: 32
|
|
|
|
|
|
Num. items: 1
|
2009-08-18 12:08:25 +02:00
|
|
|
|
Flags: -
|
|
|
|
|
|
Range/List: 0-x (driver specific)
|
|
|
|
|
|
|
|
|
|
|
|
This property controls the brightness on laptop panels and equivalent
|
|
|
|
|
|
displays with a backlight controller. The driver specific maximum
|
|
|
|
|
|
value MUST turn the backlight to full brightness, 1 SHOULD turn the
|
|
|
|
|
|
backlight to minimum brightness, 0 SHOULD turn the backlight off.
|
|
|
|
|
|
|
2009-08-18 11:56:38 +02:00
|
|
|
|
"CloneList" aka RR_PROPERTY_CLONE_LIST
|
2011-08-02 14:58:31 -07:00
|
|
|
|
Type: ATOM
|
|
|
|
|
|
Format: 32
|
|
|
|
|
|
Num. items: 2*n
|
2009-08-18 11:56:38 +02:00
|
|
|
|
Flags: Immutable
|
|
|
|
|
|
Range/List: 0-
|
|
|
|
|
|
|
|
|
|
|
|
Some combinations of outputs on some cards cannot be served
|
|
|
|
|
|
independently from each other, because they are wired up to the same
|
|
|
|
|
|
encoder outputs.
|
|
|
|
|
|
This property lists all output + signal format pairs that are
|
|
|
|
|
|
driven together with this output, and thus can only be programmed in
|
|
|
|
|
|
clone mode with the same CRTC.
|
|
|
|
|
|
This property MUST be symmetric, but may change with changing signal
|
|
|
|
|
|
format. I.e. if the property for DVI-1/VGA specifies VGA-1/VGA to be
|
|
|
|
|
|
cloned, VGA-1/VGA has to list DVI-1/VGA as well.
|
|
|
|
|
|
Outputs / format pairs listed in this property MUST be included in the
|
|
|
|
|
|
CompatibilityList.
|
|
|
|
|
|
|
|
|
|
|
|
"CompatibilityList" aka RR_PROPERTY_COMPATIBILITY_LIST
|
2011-08-02 14:58:31 -07:00
|
|
|
|
Type: ATOM
|
|
|
|
|
|
Format: 32
|
|
|
|
|
|
Num items: 2*n
|
2009-08-18 11:56:38 +02:00
|
|
|
|
Flags: Immutable
|
|
|
|
|
|
Range/List: 0-
|
|
|
|
|
|
|
|
|
|
|
|
Some combinations of outputs on some cards cannot be served at all,
|
|
|
|
|
|
because the according encoder is only capable of driving one output at
|
|
|
|
|
|
a time.
|
|
|
|
|
|
This property lists all output + signal format pairs that can be
|
|
|
|
|
|
driven together with this output. NULL atoms specify any output / any
|
|
|
|
|
|
signal format, respectively.
|
|
|
|
|
|
This property MUST be symmetric, but may change with changing signal
|
|
|
|
|
|
format. I.e. if the property for DVI-1/TMDS specifies VGA-1/VGA to be
|
|
|
|
|
|
available, VGA-1/VGA has to list DVI-1/TMDS as well.
|
|
|
|
|
|
|
|
|
|
|
|
"ConnectorNumber" aka RR_PROPERTY_CONNECTOR_NUMBER
|
2011-08-02 14:58:31 -07:00
|
|
|
|
Type: INTEGER
|
|
|
|
|
|
Format: 32
|
|
|
|
|
|
Num items: 1
|
2009-08-18 11:56:38 +02:00
|
|
|
|
Flags: Immutable, Static
|
|
|
|
|
|
Range/List: 0-
|
|
|
|
|
|
|
|
|
|
|
|
Outputs that route their signal to the same connector MUST
|
|
|
|
|
|
have the same connector number. Outputs with the same
|
|
|
|
|
|
connector number MUST route their signal to the same
|
|
|
|
|
|
connector, except if it is 0, which indicates unknown
|
|
|
|
|
|
connectivity. 1 is called the primary connector, 2 the
|
|
|
|
|
|
secondary. 3 is typically a TV connector, but that is completely
|
|
|
|
|
|
driver / hardware dependent.
|
|
|
|
|
|
Outputs with the same connector number SHOULD have the same
|
|
|
|
|
|
connector type. Meaning and client behavior for mismatching
|
|
|
|
|
|
connector types is undefined at the moment.
|
|
|
|
|
|
|
|
|
|
|
|
"ConnectorType" aka RR_PROPERTY_CONNECTOR_TYPE
|
2011-08-02 14:58:31 -07:00
|
|
|
|
Type: ATOM
|
|
|
|
|
|
Format: 32
|
|
|
|
|
|
Num items: 1
|
2009-08-18 11:56:38 +02:00
|
|
|
|
Flags: Immutable, Static
|
|
|
|
|
|
Range/List: unknown VGA DVI DVI‐I DVI‐A DVI‐D HDMI Panel
|
|
|
|
|
|
TV TV-Composite TV-SVideo TV-Component
|
|
|
|
|
|
TV-SCART TV-C4 DisplayPort
|
|
|
|
|
|
|
|
|
|
|
|
Connector type, as far as known to the driver.
|
|
|
|
|
|
Values with dashes (TV‐Composite) describe more specific versions of
|
|
|
|
|
|
the base values (TV). The former SHOULD be used if the connector is
|
|
|
|
|
|
not capable of producing other signal formats. The later SHOULD be
|
|
|
|
|
|
used if the exact connector is unknown, or the connector is a
|
|
|
|
|
|
multi‐format connector that is not described otherwise. DVI, for
|
|
|
|
|
|
instance, SHOULD be handled like a DVI‐I connector, unless additional
|
|
|
|
|
|
information is available to the user agent. PANEL describes
|
|
|
|
|
|
laptop‐internal (normally LVDS) displays. TV, TV‐SCART, TV‐Component,
|
|
|
|
|
|
and TV‐C4 with signal format VGA are valid combinations and describe
|
|
|
|
|
|
RGB TV signals.
|
|
|
|
|
|
|
2008-12-16 18:13:48 +01:00
|
|
|
|
"EDID" aka RR_PROPERTY_RANDR_EDID
|
2011-08-02 14:58:31 -07:00
|
|
|
|
Type: INTEGER
|
|
|
|
|
|
Format: 8
|
|
|
|
|
|
Num items: n
|
2008-12-16 18:09:08 +01:00
|
|
|
|
Flags: Immutable
|
|
|
|
|
|
Range/List: -
|
|
|
|
|
|
|
|
|
|
|
|
Raw EDID data from the device attached to the according
|
|
|
|
|
|
output. Should include main EDID data and all extension
|
2009-08-18 12:00:10 +02:00
|
|
|
|
blocks. Previously known as EdidData.
|
2008-12-16 18:09:08 +01:00
|
|
|
|
|
|
|
|
|
|
"SignalFormat" aka RR_PROPERTY_SIGNAL_FORMAT
|
2011-08-02 14:58:31 -07:00
|
|
|
|
Type: ATOM
|
|
|
|
|
|
Format: 32
|
|
|
|
|
|
Num items: 1
|
2008-12-16 18:09:08 +01:00
|
|
|
|
Flags: -
|
|
|
|
|
|
Range/List: unknown VGA TMDS LVDS Composite Composite-PAL
|
|
|
|
|
|
Composite-NTSC Composite-SECAM SVideo
|
|
|
|
|
|
Component DisplayPort
|
|
|
|
|
|
|
|
|
|
|
|
Signal format / physical protocol format that is used for the
|
|
|
|
|
|
specified output. valid-values lists all possible formats on this
|
|
|
|
|
|
output, which SHOULD be a subset of the list above and MUST be static.
|
|
|
|
|
|
Values with dashes (Composite-PAL) describe more specific versions of
|
|
|
|
|
|
the base values (Composite) and SHOULD be used if known to the driver.
|
|
|
|
|
|
A driver MAY change this property of an output if the underlying
|
|
|
|
|
|
hardware indicates a protocol change (e.g. TV formats). Clients are
|
|
|
|
|
|
allowed to change the signal format in order to select a different
|
|
|
|
|
|
signal format (e.g. Composite etc.) or physical protocol (e.g. VGA or
|
|
|
|
|
|
TMDS on DVI-I).
|
|
|
|
|
|
Laptop panels SHOULD not be detected with this property, but rather by
|
|
|
|
|
|
ConnectorType.
|
|
|
|
|
|
|
|
|
|
|
|
"SignalProperties" aka RR_PROPERTY_SIGNAL_FORMAT
|
2011-08-02 14:58:31 -07:00
|
|
|
|
Type: ATOM
|
|
|
|
|
|
Format: 32
|
|
|
|
|
|
Num items: n
|
2008-12-16 18:09:08 +01:00
|
|
|
|
Flags: -
|
|
|
|
|
|
Range/List: For Composite signals:
|
|
|
|
|
|
NTSC NTSC-M NTSC-J NTSC-N NTSC-4.43 NTSC-film
|
|
|
|
|
|
PAL PAL-B PAL-G PAL-H PAL-H PAL-I PAL-M PAL-D
|
|
|
|
|
|
PAL-N PAL-Nc PAL-L PAL-60
|
|
|
|
|
|
SECAM SECAM-L SECAM-B SECAM-G SECAM-D SECAM-K
|
|
|
|
|
|
SECAM-H SECAM-K
|
|
|
|
|
|
For TMDS signals:
|
|
|
|
|
|
SingleLink DualLink
|
|
|
|
|
|
For DisplayPort signals:
|
|
|
|
|
|
Lane1 Lane2 Lane4 LowSpeed HiSpeed
|
|
|
|
|
|
|
|
|
|
|
|
Properties of the signal format that is currently used for the
|
|
|
|
|
|
specified output. valid-values lists all possible properties on this
|
|
|
|
|
|
output, which SHOULD be a subset of the list above. It will change if
|
|
|
|
|
|
SignalFormat changes. Multiple properties are allowed.
|
|
|
|
|
|
Values with dashes (PAL-B) describe more specific versions of the base
|
|
|
|
|
|
values (PAL) and SHOULD be used if known to the driver. A driver MAY
|
|
|
|
|
|
change this property of an output if the underlying hardware indicates
|
|
|
|
|
|
a signal change (e.g. TV formats). Clients are allowed to change the
|
|
|
|
|
|
properties in order to select a different signal subformat.
|
|
|
|
|
|
|
2011-07-27 22:57:56 -07:00
|
|
|
|
"Border" aka RR_PROPERTY_BORDER
|
|
|
|
|
|
Type: CARDINAL
|
|
|
|
|
|
Format: 16
|
|
|
|
|
|
Num items: 0, 1, 2, or 4
|
|
|
|
|
|
Flags: Immutable
|
|
|
|
|
|
Range/List: 0-
|
|
|
|
|
|
|
|
|
|
|
|
This property is a list of integers specifying adjustments for the edges
|
|
|
|
|
|
of the displayed image. How this property is applied depends on the
|
|
|
|
|
|
number of elements in the list:
|
|
|
|
|
|
|
|
|
|
|
|
0 = No border is applied
|
|
|
|
|
|
1 = A border of Border[0] is applied to all four sides of the image.
|
|
|
|
|
|
2 = A border of Border[0] is applied to the left and right sides of
|
|
|
|
|
|
the image, and a border of Border[1] is applied to the top and
|
|
|
|
|
|
bottom.
|
|
|
|
|
|
4 = The border dimensions are as follows:
|
|
|
|
|
|
Border[0]: left
|
|
|
|
|
|
Border[1]: top
|
|
|
|
|
|
Border[2]: right
|
|
|
|
|
|
Border[3]: bottom
|
|
|
|
|
|
|
|
|
|
|
|
Note that how many configuration dimensions are actually supported is
|
|
|
|
|
|
specified by the BorderDimensions property described below. If more than
|
|
|
|
|
|
BorderDimensions values are specified, the extra values are ignored.
|
|
|
|
|
|
|
|
|
|
|
|
These border dimensions shrink the region of pixels displayed by the
|
|
|
|
|
|
CRTC by the corresponding number of rows or columns, and is applied
|
|
|
|
|
|
after the CRTC transform. For example, a mode with a 1920x1080 active
|
|
|
|
|
|
region, border dimensions of [ 10, 20, 30, 40 ], and a ½x scaling
|
|
|
|
|
|
transform would display a rectangle of 940x510 pixels from the scanout
|
|
|
|
|
|
pixmap scaled to 1880x1020 raster pixels positioned at (10, 20) in
|
|
|
|
|
|
display raster space.
|
|
|
|
|
|
|
|
|
|
|
|
Raster pixels in the border are black.
|
|
|
|
|
|
|
|
|
|
|
|
This property is created with pending == TRUE, so changes are not
|
|
|
|
|
|
applied immediately and instead take effect at the next RRSetCrtcConfig.
|
|
|
|
|
|
|
|
|
|
|
|
If multiple outputs with different border settings are bound to the same
|
|
|
|
|
|
CRTC when the configuration is changed, the behavior is undefined.
|
|
|
|
|
|
|
|
|
|
|
|
If the length of the property is less than four when the CRTC is
|
|
|
|
|
|
configured, the missing values are assumed to be zero. If the length is
|
|
|
|
|
|
greater than four, the extra values are ignored.
|
|
|
|
|
|
|
|
|
|
|
|
If the width of the mode is less than or equal to the sum of the left
|
|
|
|
|
|
and right borders, then the left and right border settings are ignored.
|
|
|
|
|
|
Likewise, if the height of the mode is less than or equal to the sum of
|
|
|
|
|
|
the top and bottom borders, the top and bottom borders are ignored.
|
|
|
|
|
|
|
|
|
|
|
|
"BorderDimensions" aka RR_PROPERTY_BORDER_DIMENSIONS
|
|
|
|
|
|
Type: CARDINAL
|
|
|
|
|
|
Format: 8
|
|
|
|
|
|
Num items: 1
|
|
|
|
|
|
Flags: Immutable, Static
|
|
|
|
|
|
Range/List: 0, 1, 2, or 4
|
|
|
|
|
|
|
|
|
|
|
|
This property lists how many border adjustment parameters can actually
|
|
|
|
|
|
be used:
|
|
|
|
|
|
|
|
|
|
|
|
0 = no borders are supported
|
|
|
|
|
|
1 = a single border value is applied to all four sides of the image
|
|
|
|
|
|
2 = left/right and top/bottom borders can be specified independently
|
|
|
|
|
|
4 = all four borders can be specified independently
|
|
|
|
|
|
|
2012-06-12 12:32:19 -07:00
|
|
|
|
"GUID" aka RR_PROPERTY_GUID
|
|
|
|
|
|
Type: INTEGER
|
|
|
|
|
|
Format: 8
|
|
|
|
|
|
Num items: 16
|
|
|
|
|
|
Flags: Immutable
|
|
|
|
|
|
Range/List: -
|
|
|
|
|
|
|
|
|
|
|
|
Some display devices, such as DisplayPort 1.2 devices, have globally
|
|
|
|
|
|
unique identifiers. When such an identifier is available, this property
|
|
|
|
|
|
contains its raw bytes.
|
|
|
|
|
|
|
2008-12-16 18:09:08 +01:00
|
|
|
|
|
|
|
|
|
|
9.2 Properties introduced with version 1.2 of the RandR extension
|
|
|
|
|
|
|
|
|
|
|
|
Property Immutable Mandatory since
|
|
|
|
|
|
──────── ───────── ───────────────
|
2009-08-18 12:00:10 +02:00
|
|
|
|
EDID yes n/a
|
2008-12-16 18:09:08 +01:00
|
|
|
|
|
2009-08-18 12:00:10 +02:00
|
|
|
|
EDID is provided by the RandR frontend, thus not driver specific.
|
2008-12-16 18:09:08 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9.3 Properties introduced with version 1.3 of the RandR extension
|
|
|
|
|
|
|
|
|
|
|
|
Property Immutable Mandatory since
|
|
|
|
|
|
──────── ───────── ───────────────
|
2009-08-18 11:56:38 +02:00
|
|
|
|
CloneList yes not mandatory
|
|
|
|
|
|
CompatibilityList yes not mandatory
|
|
|
|
|
|
ConnectorNumber yes: static not mandatory
|
|
|
|
|
|
ConnectorType yes: static RandR 1.3
|
2008-12-16 18:09:08 +01:00
|
|
|
|
SignalFormat no RandR 1.3
|
|
|
|
|
|
SignalProperties no not mandatory
|
|
|
|
|
|
|
2009-10-05 20:50:22 -07:00
|
|
|
|
9.4 Properties introduced with version 1.3.1 of the RandR extension
|
2009-08-18 12:08:25 +02:00
|
|
|
|
|
|
|
|
|
|
Property Immutable Mandatory since
|
|
|
|
|
|
──────── ───────── ───────────────
|
|
|
|
|
|
Backlight no not mandatory
|
|
|
|
|
|
|
2011-07-27 22:57:56 -07:00
|
|
|
|
9.5 Properties introduced with version 1.4.0 of the RandR extension
|
|
|
|
|
|
|
|
|
|
|
|
Property Immutable Mandatory since
|
|
|
|
|
|
──────── ───────── ───────────────
|
|
|
|
|
|
Border yes not mandatory
|
|
|
|
|
|
BorderDimensions yes: static not mandatory
|
2012-06-12 12:32:19 -07:00
|
|
|
|
GUID yes not mandatory
|
2011-07-27 22:57:56 -07:00
|
|
|
|
|
2010-12-05 20:30:43 -08:00
|
|
|
|
❧❧❧❧❧❧❧❧❧❧❧
|
2008-12-16 18:09:08 +01:00
|
|
|
|
|
|
|
|
|
|
10. Extension Versioning
|
2003-11-14 16:48:43 +00:00
|
|
|
|
|
|
|
|
|
|
The RandR extension was developed in parallel with the implementation
|
2006-09-11 21:29:39 -07:00
|
|
|
|
to ensure the feasibility of various portions of the design. As
|
2003-11-14 16:48:43 +00:00
|
|
|
|
portions of the extension are implemented, the version number of the
|
2006-09-12 18:40:03 -07:00
|
|
|
|
extension has changed to reflect the portions of the standard provided.
|
2012-07-09 22:18:22 -07:00
|
|
|
|
This document describes the version 1.4 of the specification, the
|
2006-09-11 21:29:39 -07:00
|
|
|
|
partial implementations have version numbers less than that. Here's a
|
2006-09-13 12:23:08 -07:00
|
|
|
|
list of what each version provided:
|
2003-11-14 16:48:43 +00:00
|
|
|
|
|
|
|
|
|
|
0.0: This prototype implemented resize and rotation in the
|
|
|
|
|
|
TinyX server Used approximately the protocol described in
|
2006-09-11 21:29:39 -07:00
|
|
|
|
the Usenix paper. Appeared in the TinyX server in
|
2003-11-14 16:48:43 +00:00
|
|
|
|
XFree86 4.2, but not in the XFree86 main server.
|
|
|
|
|
|
|
|
|
|
|
|
0.1: Added subpixel order, added an event for subpixel order.
|
|
|
|
|
|
This version was never checked in to XFree86 CVS.
|
|
|
|
|
|
|
2006-09-11 21:29:39 -07:00
|
|
|
|
1.0: Implements resize, rotation, and reflection. Implemented
|
2003-11-14 16:48:43 +00:00
|
|
|
|
both in the XFree86 main server (size change only at this
|
|
|
|
|
|
date), and fully (size change, rotation, and reflection)
|
|
|
|
|
|
in XFree86's TinyX server.
|
|
|
|
|
|
|
|
|
|
|
|
1.1: Added refresh rates
|
|
|
|
|
|
|
2006-09-12 16:48:22 -07:00
|
|
|
|
1.2: Separate screens from CRTCs and outputs, switch to full VESA
|
|
|
|
|
|
modes
|
2006-06-24 16:58:16 -07:00
|
|
|
|
|
2008-12-03 12:02:18 -05:00
|
|
|
|
1.3: Added cheap version of RRGetScreenResources. Added CRTC
|
2008-12-10 11:15:48 -05:00
|
|
|
|
transformations. Added panning. Added primary outputs.
|
2008-12-16 18:09:08 +01:00
|
|
|
|
Added standard properties.
|
2008-11-24 15:54:09 -05:00
|
|
|
|
|
2012-07-09 22:18:22 -07:00
|
|
|
|
1.4: Added provider objects for handling multi-GPU systems.
|
|
|
|
|
|
|
2003-11-14 16:48:43 +00:00
|
|
|
|
Compatibility between 0.0 and 1.0 was *NOT* preserved, and 0.0 clients
|
2006-09-11 21:29:39 -07:00
|
|
|
|
will fail against 1.0 servers. The wire encoding op-codes were
|
2003-11-14 16:48:43 +00:00
|
|
|
|
changed for GetScreenInfo to ensure this failure in a relatively
|
2006-09-11 21:29:39 -07:00
|
|
|
|
graceful way. Version 1.1 servers and clients are cross compatible with
|
|
|
|
|
|
1.0. Version 1.1 is considered to be stable and we intend upward
|
2006-09-13 12:23:08 -07:00
|
|
|
|
compatibility from this point. Version 1.2 offers an extended model of the
|
2008-12-03 12:02:18 -05:00
|
|
|
|
system with multiple output support. Version 1.3 adds a cheap version of
|
2008-12-10 11:15:48 -05:00
|
|
|
|
GetScreenResources to avoid expensive DDC operations, CRTC transformations,
|
2012-07-09 22:18:22 -07:00
|
|
|
|
panning, and the primary output concept. Versions 1.2 through 1.4 are
|
|
|
|
|
|
backward-compatible with 1.1.
|
2003-11-14 16:48:43 +00:00
|
|
|
|
|
2010-12-05 20:30:43 -08:00
|
|
|
|
❧❧❧❧❧❧❧❧❧❧❧
|
2006-09-12 16:48:22 -07:00
|
|
|
|
|
2008-12-16 18:09:08 +01:00
|
|
|
|
11. Relationship with other extensions
|
2006-06-25 03:10:20 +02:00
|
|
|
|
|
|
|
|
|
|
Two other extensions have a direct relationship with this extension. This
|
|
|
|
|
|
section attempts to explain how these three are supposed to work together.
|
|
|
|
|
|
|
2008-12-16 18:09:08 +01:00
|
|
|
|
11.1 XFree86-VidModeExtension
|
2006-06-25 03:25:59 +02:00
|
|
|
|
|
|
|
|
|
|
XFree86-VidModeExtension changes the configuration of a single monitor
|
|
|
|
|
|
attached to the screen without changing the configuration of the screen
|
|
|
|
|
|
itself. It provides the ability to specify new mode lines for the server to
|
|
|
|
|
|
use along with selecting among existing mode lines. As it uses screen
|
|
|
|
|
|
numbers instead of window identifiers, it can be used to affect multiple
|
|
|
|
|
|
monitors in a single-screen Xinerama configuration. However, the association
|
|
|
|
|
|
between screen numbers and root windows in a multi-Screen environment is not
|
|
|
|
|
|
defined by the extension. Version 2.0 of this extension added the ability to
|
|
|
|
|
|
adjust the DAC values in a TrueColor server to modify the brightness curves
|
|
|
|
|
|
of the display.
|
|
|
|
|
|
|
2006-09-13 12:23:08 -07:00
|
|
|
|
All of the utility of this extension is subsumed by RandR version 1.2, RandR
|
|
|
|
|
|
should be used in preference to XFree86-VidModeExtension where both are
|
|
|
|
|
|
present.
|
2006-06-25 03:25:59 +02:00
|
|
|
|
|
2008-12-16 18:09:08 +01:00
|
|
|
|
11.2 Xinerama
|
2006-06-25 03:25:59 +02:00
|
|
|
|
|
|
|
|
|
|
Xinerama provides a mechanism for describing the relationship between the
|
|
|
|
|
|
overall screen display and monitors placed within that area. As such, it
|
|
|
|
|
|
provides the query functionality of RandR 1.2 without any of the
|
|
|
|
|
|
configuration functionality. Applications using Xinerama to discover
|
|
|
|
|
|
monitor geometry can continue to do so, with the caveat that they will not be
|
|
|
|
|
|
informed of changes when they occur. However, Xinerama configuration data
|
|
|
|
|
|
will be updated, so applications selecting for RandR notification and
|
|
|
|
|
|
re-querying the configuration with the Xinerama extension will get updated
|
2006-06-26 12:42:50 +02:00
|
|
|
|
information. It is probably better to view RandR as a superset of Xinerama
|
|
|
|
|
|
at this point and use it in preference to Xinerama where both are present.
|
2006-06-25 03:25:59 +02:00
|
|
|
|
|
2010-12-05 20:30:43 -08:00
|
|
|
|
❧❧❧❧❧❧❧❧❧❧❧
|
2006-09-12 16:48:22 -07:00
|
|
|
|
|
2003-11-14 16:48:43 +00:00
|
|
|
|
Appendix A. Protocol Encoding
|
|
|
|
|
|
|
|
|
|
|
|
Syntactic Conventions
|
|
|
|
|
|
|
|
|
|
|
|
This document uses the same syntactic conventions as the core X
|
|
|
|
|
|
protocol encoding document.
|
|
|
|
|
|
|
|
|
|
|
|
A.1 Common Types
|
|
|
|
|
|
|
2006-09-12 16:48:22 -07:00
|
|
|
|
┌───
|
|
|
|
|
|
ROTATION
|
2006-06-24 17:35:35 -07:00
|
|
|
|
0x0001 Rotate_0
|
|
|
|
|
|
0x0002 Rotate_90
|
|
|
|
|
|
0x0004 Rotate_180
|
|
|
|
|
|
0x0008 Rotate_270
|
|
|
|
|
|
0x0010 Reflect_X
|
|
|
|
|
|
0x0020 Reflect_Y
|
2006-09-12 16:48:22 -07:00
|
|
|
|
└───
|
|
|
|
|
|
Used to encode both sets of possible rotations and individual
|
|
|
|
|
|
selected rotations.
|
2003-11-14 16:48:43 +00:00
|
|
|
|
|
2006-09-12 16:48:22 -07:00
|
|
|
|
┌───
|
|
|
|
|
|
RRSELECTMASK
|
2006-06-25 03:35:24 +02:00
|
|
|
|
0x0001 ScreenChangeNotifyMask
|
2006-09-11 21:29:39 -07:00
|
|
|
|
0x0002 CrtcChangeNotifyMask Added in version 1.2
|
2006-09-12 16:48:22 -07:00
|
|
|
|
0x0004 OutputChangeNotifyMask Added in version 1.2
|
2006-09-14 23:53:04 -07:00
|
|
|
|
0x0008 OutputPropertyNotifyMask Added in version 1.2
|
2012-07-09 22:18:21 -07:00
|
|
|
|
0x0010 ProviderChangeNotifyMask Added in version 1.4
|
|
|
|
|
|
0x0020 ProviderPropertyNotifyMask Added in version 1.4
|
|
|
|
|
|
0x0040 ResourceChangeNotifyMask Added in version 1.4
|
|
|
|
|
|
|
2006-09-12 16:48:22 -07:00
|
|
|
|
└───
|
|
|
|
|
|
Event select mask for RRSelectInput
|
2009-06-05 20:37:24 -07:00
|
|
|
|
|
2006-09-12 16:48:22 -07:00
|
|
|
|
┌───
|
|
|
|
|
|
RRCONFIGSTATUS
|
2006-06-25 08:51:27 +02:00
|
|
|
|
0x0 Success
|
|
|
|
|
|
0x1 InvalidConfigTime
|
|
|
|
|
|
0x2 InvalidTime
|
|
|
|
|
|
0x3 Failed
|
2006-09-12 16:48:22 -07:00
|
|
|
|
└───
|
|
|
|
|
|
Return status for requests which depend on time.
|
2009-06-05 20:37:24 -07:00
|
|
|
|
|
2006-10-03 11:01:56 -07:00
|
|
|
|
┌───
|
2006-11-16 08:50:49 -08:00
|
|
|
|
MODEINFO (32) Added in version 1.2
|
2006-09-12 16:48:22 -07:00
|
|
|
|
4 CARD32 id
|
2006-06-26 12:42:50 +02:00
|
|
|
|
2 CARD16 width in pixels
|
|
|
|
|
|
2 CARD16 height in pixels
|
|
|
|
|
|
4 CARD32 dot clock
|
|
|
|
|
|
2 CARD16 h sync start
|
|
|
|
|
|
2 CARD16 h sync end
|
|
|
|
|
|
2 CARD16 h total
|
|
|
|
|
|
2 CARD16 h skew
|
|
|
|
|
|
2 CARD16 v sync start
|
|
|
|
|
|
2 CARD16 v sync end
|
|
|
|
|
|
2 CARD16 v total
|
2006-09-12 16:48:22 -07:00
|
|
|
|
2 CARD16 name length
|
2006-06-26 12:42:50 +02:00
|
|
|
|
4 SETofMODEFLAG mode flags
|
2006-09-12 16:48:22 -07:00
|
|
|
|
└───
|
2009-06-05 20:37:24 -07:00
|
|
|
|
|
2006-09-12 16:48:22 -07:00
|
|
|
|
An output mode specifies the complete CRTC timings for
|
2006-09-12 18:40:03 -07:00
|
|
|
|
a specific mode. The vertical and horizontal synchronization rates
|
2006-06-27 22:38:32 +02:00
|
|
|
|
can be computed given the dot clock and the h total/v total
|
|
|
|
|
|
values. If the dot clock is zero, then all of the timing
|
|
|
|
|
|
parameters and flags are not used, and must be zero as this
|
|
|
|
|
|
indicates that the timings are unknown or otherwise unused.
|
2006-09-13 12:23:08 -07:00
|
|
|
|
The name itself will be encoded separately in each usage.
|
2009-06-05 20:37:24 -07:00
|
|
|
|
|
2006-09-14 23:53:04 -07:00
|
|
|
|
┌───
|
|
|
|
|
|
MODEFLAG
|
|
|
|
|
|
0x00000001 HSyncPositive
|
|
|
|
|
|
0x00000002 HSyncNegative
|
|
|
|
|
|
0x00000004 VSyncPositive
|
|
|
|
|
|
0x00000008 VSyncNegative
|
|
|
|
|
|
0x00000010 Interlace
|
|
|
|
|
|
0x00000020 DoubleScan
|
|
|
|
|
|
0x00000040 CSync
|
|
|
|
|
|
0x00000080 CSyncPositive
|
|
|
|
|
|
0x00000100 CSyncNegative
|
|
|
|
|
|
0x00000200 HSkewPresent
|
|
|
|
|
|
0x00000400 BCast
|
|
|
|
|
|
0x00000800 PixelMultiplex
|
|
|
|
|
|
0x00001000 DoubleClock
|
|
|
|
|
|
0x00002000 ClockDivideBy2
|
|
|
|
|
|
└───
|
2006-09-15 15:41:02 -07:00
|
|
|
|
┌───
|
|
|
|
|
|
CONNECTION
|
|
|
|
|
|
0 Connected
|
|
|
|
|
|
1 Disconnected
|
|
|
|
|
|
2 UnknownConnection
|
|
|
|
|
|
└───
|
2006-10-03 11:01:56 -07:00
|
|
|
|
|
2012-08-27 23:45:56 -07:00
|
|
|
|
┌───
|
|
|
|
|
|
PROVIDER_CAPS Added in version 1.4
|
|
|
|
|
|
0x00000001 SourceOutput
|
|
|
|
|
|
0x00000002 SinkOutput
|
|
|
|
|
|
0x00000004 SourceOffload
|
|
|
|
|
|
0x00000008 SinkOffload
|
|
|
|
|
|
└───
|
2006-09-15 15:41:02 -07:00
|
|
|
|
|
2003-11-14 16:48:43 +00:00
|
|
|
|
A.2 Protocol Requests
|
|
|
|
|
|
|
2006-09-13 12:33:58 -07:00
|
|
|
|
Opcodes 1 and 3 were used in the 0.0 protocols, and will return
|
2003-11-14 16:48:43 +00:00
|
|
|
|
errors if used in version 1.0.
|
|
|
|
|
|
|
2006-09-12 16:48:22 -07:00
|
|
|
|
┌───
|
|
|
|
|
|
RRQueryVersion
|
2003-11-14 16:48:43 +00:00
|
|
|
|
|
|
|
|
|
|
1 CARD8 major opcode
|
2006-09-13 12:33:58 -07:00
|
|
|
|
1 0 RandR opcode
|
2003-11-14 16:48:43 +00:00
|
|
|
|
2 3 length
|
|
|
|
|
|
4 CARD32 major version
|
|
|
|
|
|
4 CARD32 minor version
|
2006-09-12 16:48:22 -07:00
|
|
|
|
▶
|
2003-11-14 16:48:43 +00:00
|
|
|
|
1 1 Reply
|
2010-12-05 20:30:43 -08:00
|
|
|
|
1 unused
|
2003-11-14 16:48:43 +00:00
|
|
|
|
2 CARD16 sequence number
|
|
|
|
|
|
4 0 reply length
|
|
|
|
|
|
1 CARD32 major version
|
2010-12-05 20:30:43 -08:00
|
|
|
|
1 CARD32 minor version
|
2006-09-12 16:48:22 -07:00
|
|
|
|
└───
|
|
|
|
|
|
┌───
|
|
|
|
|
|
RRSetScreenConfig
|
2009-06-05 20:37:24 -07:00
|
|
|
|
|
2003-11-14 16:48:43 +00:00
|
|
|
|
1 CARD8 major opcode
|
2006-09-13 12:33:58 -07:00
|
|
|
|
1 2 RandR opcode
|
2006-06-25 08:51:27 +02:00
|
|
|
|
2 6 length
|
2006-06-26 14:33:18 +02:00
|
|
|
|
4 WINDOW window on screen to be configured
|
2003-11-14 16:48:43 +00:00
|
|
|
|
4 TIMESTAMP timestamp
|
2006-06-25 08:51:27 +02:00
|
|
|
|
4 TIMESTAMP config timestamp
|
2006-06-26 14:33:18 +02:00
|
|
|
|
2 SIZEID size index
|
2003-11-14 16:48:43 +00:00
|
|
|
|
2 ROTATION rotation/reflection
|
|
|
|
|
|
2 CARD16 refresh rate (1.1 only)
|
|
|
|
|
|
2 CARD16 pad
|
2006-09-12 16:48:22 -07:00
|
|
|
|
▶
|
2003-11-14 16:48:43 +00:00
|
|
|
|
1 1 Reply
|
2006-06-25 08:51:27 +02:00
|
|
|
|
1 RRCONFIGSTATUS status
|
2003-11-14 16:48:43 +00:00
|
|
|
|
2 CARD16 sequence number
|
|
|
|
|
|
4 0 reply length
|
|
|
|
|
|
4 TIMESTAMP new timestamp
|
|
|
|
|
|
4 TIMESTAMP new configuration timestamp
|
|
|
|
|
|
4 WINDOW root
|
|
|
|
|
|
2 SUBPIXELORDER subpixel order defined in Render
|
|
|
|
|
|
2 CARD16 pad4
|
|
|
|
|
|
4 CARD32 pad5
|
|
|
|
|
|
4 CARD32 pad6
|
2006-09-12 16:48:22 -07:00
|
|
|
|
└───
|
|
|
|
|
|
┌───
|
|
|
|
|
|
RRSelectInput
|
2003-11-14 16:48:43 +00:00
|
|
|
|
|
|
|
|
|
|
1 CARD8 major opcode
|
2006-09-13 12:33:58 -07:00
|
|
|
|
1 4 RandR opcode
|
2003-11-14 16:48:43 +00:00
|
|
|
|
2 3 length
|
|
|
|
|
|
4 WINDOW window
|
|
|
|
|
|
2 SETofRRSELECTMASK enable
|
|
|
|
|
|
2 CARD16 pad
|
2006-09-12 16:48:22 -07:00
|
|
|
|
└───
|
|
|
|
|
|
┌───
|
|
|
|
|
|
RRGetScreenInfo
|
2003-11-14 16:48:43 +00:00
|
|
|
|
|
|
|
|
|
|
1 CARD8 major opcode
|
2006-09-13 12:33:58 -07:00
|
|
|
|
1 5 RandR opcode
|
2003-11-14 16:48:43 +00:00
|
|
|
|
2 2 length
|
|
|
|
|
|
4 WINDOW window
|
2006-09-12 16:48:22 -07:00
|
|
|
|
▶
|
2003-11-14 16:48:43 +00:00
|
|
|
|
1 1 Reply
|
|
|
|
|
|
1 CARD8 set of Rotations
|
|
|
|
|
|
2 CARD16 sequence number
|
|
|
|
|
|
4 0 reply length
|
|
|
|
|
|
4 WINDOW root window
|
|
|
|
|
|
4 TIMESTAMP timestamp
|
|
|
|
|
|
4 TIMESTAMP config timestamp
|
2006-06-25 08:51:27 +02:00
|
|
|
|
2 CARD16 number of SCREENSIZE following
|
|
|
|
|
|
2 SIZEID current size index
|
2003-11-14 16:48:43 +00:00
|
|
|
|
2 ROTATION current rotation and reflection
|
2006-06-25 08:51:27 +02:00
|
|
|
|
2 CARD16 current rate (added in version 1.1)
|
2003-11-14 16:48:43 +00:00
|
|
|
|
2 CARD16 length of rate info (number of CARD16s)
|
|
|
|
|
|
2 CARD16 pad
|
|
|
|
|
|
|
2006-06-25 08:51:27 +02:00
|
|
|
|
SCREENSIZE
|
2003-11-14 16:48:43 +00:00
|
|
|
|
2 CARD16 width in pixels
|
|
|
|
|
|
2 CARD16 height in pixels
|
|
|
|
|
|
2 CARD16 width in millimeters
|
|
|
|
|
|
2 CARD16 height in millimeters
|
|
|
|
|
|
|
|
|
|
|
|
REFRESH
|
|
|
|
|
|
2 CARD16 number of rates (n)
|
|
|
|
|
|
2n CARD16 rates
|
2006-09-12 16:48:22 -07:00
|
|
|
|
└───
|
2003-11-14 16:48:43 +00:00
|
|
|
|
|
2006-06-25 03:35:24 +02:00
|
|
|
|
A.2.1 Protocol Requests added with version 1.2
|
|
|
|
|
|
|
2006-09-12 16:48:22 -07:00
|
|
|
|
┌───
|
|
|
|
|
|
RRGetScreenSizeRange
|
2006-06-25 03:35:24 +02:00
|
|
|
|
1 CARD8 major opcode
|
2006-09-13 12:33:58 -07:00
|
|
|
|
1 6 RandR opcode
|
2006-06-25 03:35:24 +02:00
|
|
|
|
2 2 length
|
2006-06-26 14:33:18 +02:00
|
|
|
|
4 WINDOW window
|
2006-09-12 16:48:22 -07:00
|
|
|
|
▶
|
2006-06-25 03:35:24 +02:00
|
|
|
|
1 1 Reply
|
|
|
|
|
|
1 unused
|
|
|
|
|
|
2 CARD16 sequence number
|
|
|
|
|
|
4 0 reply length
|
|
|
|
|
|
2 CARD16 minWidth
|
|
|
|
|
|
2 CARD16 minHeight
|
|
|
|
|
|
2 CARD16 maxWidth
|
|
|
|
|
|
2 CARD16 maxHeight
|
2006-09-13 12:23:08 -07:00
|
|
|
|
16 unused
|
2006-09-12 16:48:22 -07:00
|
|
|
|
└───
|
|
|
|
|
|
┌───
|
|
|
|
|
|
RRSetScreenSize
|
2006-06-25 03:35:24 +02:00
|
|
|
|
1 CARD8 major opcode
|
2006-09-13 12:33:58 -07:00
|
|
|
|
1 7 RandR opcode
|
2006-06-26 14:33:18 +02:00
|
|
|
|
2 5 length
|
|
|
|
|
|
4 WINDOW window
|
2006-06-25 03:35:24 +02:00
|
|
|
|
2 CARD16 width
|
|
|
|
|
|
2 CARD16 height
|
2006-06-26 14:33:18 +02:00
|
|
|
|
4 CARD32 width in millimeters
|
|
|
|
|
|
4 CARD32 height in millimeters
|
2006-09-12 16:48:22 -07:00
|
|
|
|
└───
|
|
|
|
|
|
┌───
|
|
|
|
|
|
RRGetScreenResources
|
2006-06-25 08:51:27 +02:00
|
|
|
|
1 CARD8 major opcode
|
2006-09-13 12:33:58 -07:00
|
|
|
|
1 8 RandR opcode
|
2006-06-25 08:51:27 +02:00
|
|
|
|
2 2 length
|
2006-06-26 14:33:18 +02:00
|
|
|
|
4 WINDOW window
|
2006-09-12 16:48:22 -07:00
|
|
|
|
▶
|
2006-06-25 08:51:27 +02:00
|
|
|
|
1 1 Reply
|
|
|
|
|
|
1 unused
|
|
|
|
|
|
2 CARD16 sequence number
|
2006-11-16 08:50:49 -08:00
|
|
|
|
4 c+o+8m+(b+p)/4 reply length
|
2006-06-25 08:51:27 +02:00
|
|
|
|
4 TIMESTAMP timestamp
|
|
|
|
|
|
4 TIMESTAMP config-timestamp
|
2006-09-12 16:48:22 -07:00
|
|
|
|
2 c number of CRTCs
|
|
|
|
|
|
2 o number of outputs
|
|
|
|
|
|
2 m number of modeinfos
|
|
|
|
|
|
2 b total bytes in mode names
|
2006-09-19 16:33:40 -07:00
|
|
|
|
8 unused
|
2006-09-12 16:48:22 -07:00
|
|
|
|
4c LISTofCRTC crtcs
|
|
|
|
|
|
4o LISTofOUTPUT outputs
|
2006-11-16 08:50:49 -08:00
|
|
|
|
32m LISTofMODEINFO modeinfos
|
2006-09-12 16:48:22 -07:00
|
|
|
|
b STRING8 mode names
|
|
|
|
|
|
p unused, p=pad(b)
|
|
|
|
|
|
└───
|
|
|
|
|
|
┌───
|
|
|
|
|
|
RRGetOutputInfo
|
2006-06-26 12:42:50 +02:00
|
|
|
|
1 CARD8 major opcode
|
2006-09-13 12:33:58 -07:00
|
|
|
|
1 9 RandR opcode
|
2006-09-12 16:48:22 -07:00
|
|
|
|
2 3 length
|
|
|
|
|
|
4 OUTPUT output
|
|
|
|
|
|
4 TIMESTAMP config-timestamp
|
|
|
|
|
|
▶
|
|
|
|
|
|
1 1 Reply
|
|
|
|
|
|
1 RRCONFIGSTATUS status
|
|
|
|
|
|
2 CARD16 sequence number
|
2006-11-16 08:50:49 -08:00
|
|
|
|
4 1+c+m+(n+p)/4 reply length
|
2006-09-12 16:48:22 -07:00
|
|
|
|
4 TIMESTAMP timestamp
|
|
|
|
|
|
4 CRTC current connected crtc
|
2006-11-01 00:23:37 -08:00
|
|
|
|
4 CARD32 width in millimeters
|
|
|
|
|
|
4 CARD32 height in millimeters
|
2006-09-12 16:48:22 -07:00
|
|
|
|
1 CONNECTION connection
|
2006-09-13 12:23:08 -07:00
|
|
|
|
1 SUBPIXELORDER subpixel-order
|
2006-09-12 16:48:22 -07:00
|
|
|
|
2 c number of CRTCs
|
|
|
|
|
|
2 m number of modes
|
2006-10-04 20:03:35 -07:00
|
|
|
|
2 p number of preferred modes
|
2006-09-14 23:53:04 -07:00
|
|
|
|
2 o number of clones
|
2006-09-12 16:48:22 -07:00
|
|
|
|
2 n length of name
|
|
|
|
|
|
4c LISTofCRTC crtcs
|
|
|
|
|
|
4m LISTofMODE modes
|
2008-07-11 17:12:22 +02:00
|
|
|
|
4o LISTofOUTPUT clones
|
2006-09-12 16:48:22 -07:00
|
|
|
|
n STRING8 name
|
|
|
|
|
|
p unused, p=pad(n)
|
|
|
|
|
|
└───
|
2006-09-13 12:23:08 -07:00
|
|
|
|
┌───
|
|
|
|
|
|
RRListOutputProperties
|
|
|
|
|
|
1 CARD8 major opcode
|
2006-09-13 12:33:58 -07:00
|
|
|
|
1 10 RandR opcode
|
2006-11-20 20:58:16 -08:00
|
|
|
|
2 2 length
|
2006-09-13 12:23:08 -07:00
|
|
|
|
4 OUTPUT output
|
|
|
|
|
|
▶
|
|
|
|
|
|
1 1 Reply
|
|
|
|
|
|
1 unused
|
|
|
|
|
|
2 CARD16 sequence number
|
|
|
|
|
|
4 n reply length
|
|
|
|
|
|
2 n number of ATOMs in atoms
|
|
|
|
|
|
22 unused
|
|
|
|
|
|
4n LISTofATOM atoms
|
|
|
|
|
|
└───
|
|
|
|
|
|
┌───
|
2006-11-20 20:58:16 -08:00
|
|
|
|
RRQueryOutputProperty
|
2006-09-13 12:23:08 -07:00
|
|
|
|
1 CARD8 major opcode
|
2006-09-13 12:33:58 -07:00
|
|
|
|
1 11 RandR opcode
|
2006-11-20 20:58:16 -08:00
|
|
|
|
2 3 request length
|
|
|
|
|
|
4 OUTPUT output
|
|
|
|
|
|
4 ATOM property
|
|
|
|
|
|
▶
|
|
|
|
|
|
1 1 Reply
|
|
|
|
|
|
1 unused
|
|
|
|
|
|
2 CARD16 sequence number
|
|
|
|
|
|
4 n reply length
|
|
|
|
|
|
1 BOOL pending
|
|
|
|
|
|
1 BOOL range
|
|
|
|
|
|
1 BOOL immutable
|
|
|
|
|
|
21 unused
|
|
|
|
|
|
4n LISTofINT32 valid values
|
|
|
|
|
|
└───
|
|
|
|
|
|
┌───
|
|
|
|
|
|
RRConfigureOutputProperty
|
|
|
|
|
|
1 CARD8 major opcode
|
|
|
|
|
|
1 12 RandR opcode
|
|
|
|
|
|
2 4+n request length
|
|
|
|
|
|
4 OUTPUT output
|
|
|
|
|
|
4 ATOM property
|
|
|
|
|
|
1 BOOL pending
|
|
|
|
|
|
1 BOOL range
|
|
|
|
|
|
2 unused
|
|
|
|
|
|
4n LISTofINT32 valid values
|
|
|
|
|
|
└───
|
|
|
|
|
|
┌───
|
|
|
|
|
|
RRChangeOutputProperty
|
|
|
|
|
|
1 CARD8 major opcode
|
|
|
|
|
|
1 13 RandR opcode
|
2006-09-13 12:23:08 -07:00
|
|
|
|
2 6+(n+p)/4 request length
|
|
|
|
|
|
4 OUTPUT output
|
|
|
|
|
|
4 ATOM property
|
|
|
|
|
|
4 ATOM type
|
|
|
|
|
|
1 CARD8 format
|
|
|
|
|
|
1 mode
|
|
|
|
|
|
0 Replace
|
|
|
|
|
|
1 Prepend
|
|
|
|
|
|
2 Append
|
|
|
|
|
|
2 unused
|
|
|
|
|
|
4 CARD32 length of data in format units
|
|
|
|
|
|
(= n for format = 8)
|
|
|
|
|
|
(= n/2 for format = 16)
|
|
|
|
|
|
(= n/4 for format = 32)
|
|
|
|
|
|
n LISTofBYTE data
|
|
|
|
|
|
(n is a multiple of 2 for format = 16)
|
|
|
|
|
|
(n is a multiple of 4 for format = 32)
|
|
|
|
|
|
p unused, p=pad(n)
|
|
|
|
|
|
└───
|
|
|
|
|
|
┌───
|
|
|
|
|
|
RRDeleteOutputProperty
|
|
|
|
|
|
1 CARD8 major opcode
|
2006-11-20 20:58:16 -08:00
|
|
|
|
1 14 RandR opcode
|
2006-09-13 12:23:08 -07:00
|
|
|
|
2 3 request length
|
|
|
|
|
|
4 OUTPUT output
|
|
|
|
|
|
4 ATOM property
|
|
|
|
|
|
└───
|
|
|
|
|
|
┌───
|
|
|
|
|
|
RRGetOutputProperty
|
|
|
|
|
|
1 CARD8 major opcode
|
2006-11-20 20:58:16 -08:00
|
|
|
|
1 15 RandR opcode
|
2006-09-13 12:23:08 -07:00
|
|
|
|
2 7 request length
|
|
|
|
|
|
4 OUTPUT output
|
|
|
|
|
|
4 ATOM property
|
|
|
|
|
|
4 ATOM type
|
|
|
|
|
|
0 AnyPropertyType
|
|
|
|
|
|
4 CARD32 long-offset
|
|
|
|
|
|
4 CARD32 long-length
|
|
|
|
|
|
1 BOOL delete
|
2006-11-20 20:58:16 -08:00
|
|
|
|
1 BOOL pending
|
|
|
|
|
|
2 unused
|
2006-09-13 12:23:08 -07:00
|
|
|
|
▶
|
|
|
|
|
|
1 1 Reply
|
|
|
|
|
|
1 CARD8 format
|
|
|
|
|
|
2 CARD16 sequence number
|
|
|
|
|
|
4 (n+p)/4 reply length
|
|
|
|
|
|
4 ATOM type
|
|
|
|
|
|
0 None
|
|
|
|
|
|
4 CARD32 bytes-after
|
|
|
|
|
|
4 CARD32 length of value in format units
|
|
|
|
|
|
(= 0 for format = 0)
|
|
|
|
|
|
(= n for format = 8)
|
|
|
|
|
|
(= n/2 for format = 16)
|
|
|
|
|
|
(= n/4 for format = 32)
|
|
|
|
|
|
12 unused
|
|
|
|
|
|
n LISTofBYTE value
|
|
|
|
|
|
(n is zero for format = 0)
|
|
|
|
|
|
(n is a multiple of 2 for format = 16)
|
|
|
|
|
|
(n is a multiple of 4 for format = 32)
|
|
|
|
|
|
p unused, p=pad(n)
|
|
|
|
|
|
└───
|
2006-09-12 16:48:22 -07:00
|
|
|
|
┌───
|
|
|
|
|
|
RRCreateMode
|
2006-06-26 12:42:50 +02:00
|
|
|
|
1 CARD8 major opcode
|
2006-11-20 20:58:16 -08:00
|
|
|
|
1 16 RandR opcode
|
2012-08-26 18:31:16 -07:00
|
|
|
|
2 10+(n+p)/4 length
|
2006-06-26 14:33:18 +02:00
|
|
|
|
4 WINDOW window
|
2006-11-16 08:50:49 -08:00
|
|
|
|
32 MODEINFO mode
|
2006-09-12 16:48:22 -07:00
|
|
|
|
n STRING8 mode name
|
|
|
|
|
|
p unused, p=pad(n)
|
|
|
|
|
|
▶
|
|
|
|
|
|
1 1 Reply
|
|
|
|
|
|
1 unused
|
|
|
|
|
|
2 CARD16 sequence number
|
|
|
|
|
|
4 0 reply length
|
|
|
|
|
|
4 MODE mode
|
|
|
|
|
|
20 unused
|
|
|
|
|
|
└───
|
|
|
|
|
|
┌───
|
|
|
|
|
|
RRDestroyMode
|
2006-06-25 08:51:27 +02:00
|
|
|
|
1 CARD8 major opcode
|
2006-11-20 20:58:16 -08:00
|
|
|
|
1 17 RandR opcode
|
2006-09-12 16:48:22 -07:00
|
|
|
|
2 2 length
|
|
|
|
|
|
4 MODE mode
|
|
|
|
|
|
└───
|
|
|
|
|
|
┌───
|
|
|
|
|
|
RRAddOutputMode
|
|
|
|
|
|
1 CARD8 major opcode
|
2006-11-20 20:58:16 -08:00
|
|
|
|
1 18 RandR opcode
|
2006-09-12 16:48:22 -07:00
|
|
|
|
2 3 length
|
|
|
|
|
|
4 OUTPUT output
|
|
|
|
|
|
4 MODE mode
|
|
|
|
|
|
└───
|
|
|
|
|
|
┌───
|
|
|
|
|
|
RRDeleteOutputMode
|
|
|
|
|
|
1 CARD8 major opcode
|
2006-11-20 20:58:16 -08:00
|
|
|
|
1 19 RandR opcode
|
2006-09-12 16:48:22 -07:00
|
|
|
|
2 3 length
|
|
|
|
|
|
4 OUTPUT output
|
|
|
|
|
|
4 MODE mode
|
|
|
|
|
|
└───
|
|
|
|
|
|
┌───
|
|
|
|
|
|
RRGetCrtcInfo
|
|
|
|
|
|
1 CARD8 major opcode
|
2006-11-20 20:58:16 -08:00
|
|
|
|
1 20 RandR opcode
|
2006-09-12 16:48:22 -07:00
|
|
|
|
2 3 length
|
|
|
|
|
|
4 CRTC crtc
|
|
|
|
|
|
4 TIMESTAMP config-timestamp
|
|
|
|
|
|
▶
|
|
|
|
|
|
1 1 Reply
|
|
|
|
|
|
1 RRCONFIGSTATUS status
|
|
|
|
|
|
2 CARD16 sequence number
|
|
|
|
|
|
4 o+p reply length
|
2012-08-26 18:58:06 -07:00
|
|
|
|
4 TIMESTAMP timestamp
|
2006-09-12 16:48:22 -07:00
|
|
|
|
2 INT16 x
|
|
|
|
|
|
2 INT16 y
|
|
|
|
|
|
2 CARD16 width
|
|
|
|
|
|
2 CARD16 height
|
|
|
|
|
|
4 MODE mode
|
|
|
|
|
|
2 ROTATION current rotation and reflection
|
|
|
|
|
|
2 ROTATION set of possible rotations
|
|
|
|
|
|
2 o number of outputs
|
|
|
|
|
|
2 p number of possible outputs
|
|
|
|
|
|
4o LISTofOUTPUT outputs
|
|
|
|
|
|
4p LISTofOUTPUT possible outputs
|
|
|
|
|
|
└───
|
|
|
|
|
|
┌───
|
|
|
|
|
|
RRSetCrtcConfig
|
|
|
|
|
|
1 CARD8 major opcode
|
2006-11-20 20:58:16 -08:00
|
|
|
|
1 21 RandR opcode
|
2012-08-26 20:40:06 -07:00
|
|
|
|
2 7+n length
|
2006-09-12 16:48:22 -07:00
|
|
|
|
4 CRTC crtc
|
2006-06-25 08:51:27 +02:00
|
|
|
|
4 TIMESTAMP timestamp
|
|
|
|
|
|
4 TIMESTAMP config timestamp
|
|
|
|
|
|
2 INT16 x
|
|
|
|
|
|
2 INT16 y
|
2006-09-12 16:48:22 -07:00
|
|
|
|
4 MODE mode
|
2006-06-26 14:33:18 +02:00
|
|
|
|
2 ROTATION rotation/reflection
|
2006-09-17 23:41:55 -07:00
|
|
|
|
2 unused
|
2012-08-26 20:40:06 -07:00
|
|
|
|
4n LISTofOUTPUT outputs
|
2006-09-12 16:48:22 -07:00
|
|
|
|
▶
|
2006-06-25 08:51:27 +02:00
|
|
|
|
1 1 Reply
|
|
|
|
|
|
1 RRCONFIGSTATUS status
|
|
|
|
|
|
2 CARD16 sequence number
|
|
|
|
|
|
4 0 reply length
|
|
|
|
|
|
4 TIMESTAMP new timestamp
|
2006-09-17 23:41:55 -07:00
|
|
|
|
20 unused
|
2006-09-13 12:23:08 -07:00
|
|
|
|
└───
|
|
|
|
|
|
┌───
|
|
|
|
|
|
RRGetCrtcGammaSize
|
|
|
|
|
|
1 CARD8 major opcode
|
2006-11-20 20:58:16 -08:00
|
|
|
|
1 22 RandR opcode
|
2006-09-13 12:23:08 -07:00
|
|
|
|
2 2 length
|
|
|
|
|
|
4 CRTC crtc
|
|
|
|
|
|
▶
|
|
|
|
|
|
1 1 Reply
|
|
|
|
|
|
1 unused
|
|
|
|
|
|
2 CARD16 sequence number
|
|
|
|
|
|
4 0 reply length
|
|
|
|
|
|
2 CARD16 size
|
|
|
|
|
|
22 unused
|
|
|
|
|
|
└───
|
|
|
|
|
|
┌───
|
|
|
|
|
|
RRGetCrtcGamma
|
|
|
|
|
|
1 CARD8 major opcode
|
2006-11-20 20:58:16 -08:00
|
|
|
|
1 23 RandR opcode
|
2006-09-13 12:23:08 -07:00
|
|
|
|
2 2 length
|
|
|
|
|
|
4 CRTC crtc
|
|
|
|
|
|
▶
|
|
|
|
|
|
1 1 Reply
|
|
|
|
|
|
1 unused
|
|
|
|
|
|
2 CARD16 sequence number
|
2012-08-26 20:51:03 -07:00
|
|
|
|
4 (6n+p)/4 reply length
|
2006-09-13 12:23:08 -07:00
|
|
|
|
2 n size
|
|
|
|
|
|
20 unused
|
|
|
|
|
|
2n LISTofCARD16 red
|
|
|
|
|
|
2n LISTofCARD16 green
|
|
|
|
|
|
2n LISTofCARD16 blue
|
2006-11-30 13:25:35 -08:00
|
|
|
|
p unused, p=pad(6n)
|
2006-09-13 12:23:08 -07:00
|
|
|
|
└───
|
|
|
|
|
|
┌───
|
|
|
|
|
|
RRSetCrtcGamma
|
|
|
|
|
|
1 CARD8 major opcode
|
2006-11-20 20:58:16 -08:00
|
|
|
|
1 24 RandR opcode
|
2012-08-26 20:51:03 -07:00
|
|
|
|
2 3+(6n+p)/4 length
|
2006-09-13 12:23:08 -07:00
|
|
|
|
4 CRTC crtc
|
|
|
|
|
|
2 n size
|
|
|
|
|
|
2 unused
|
|
|
|
|
|
2n LISTofCARD16 red
|
|
|
|
|
|
2n LISTofCARD16 green
|
|
|
|
|
|
2n LISTofCARD16 blue
|
2006-11-30 13:25:35 -08:00
|
|
|
|
p unused, p=pad(6n)
|
2006-09-12 16:48:22 -07:00
|
|
|
|
└───
|
2006-06-25 08:51:27 +02:00
|
|
|
|
|
2008-11-24 16:29:58 -05:00
|
|
|
|
A.2.2 Protocol Requests added with version 1.3
|
2008-11-24 15:54:09 -05:00
|
|
|
|
|
|
|
|
|
|
┌───
|
|
|
|
|
|
RRGetScreenResourcesCurrent
|
|
|
|
|
|
1 CARD8 major opcode
|
2008-11-24 16:22:11 -08:00
|
|
|
|
1 25 RandR opcode
|
2008-11-24 15:54:09 -05:00
|
|
|
|
2 2 length
|
|
|
|
|
|
4 WINDOW window
|
|
|
|
|
|
▶
|
|
|
|
|
|
1 1 Reply
|
|
|
|
|
|
1 unused
|
|
|
|
|
|
2 CARD16 sequence number
|
|
|
|
|
|
4 c+o+8m+(b+p)/4 reply length
|
|
|
|
|
|
4 TIMESTAMP timestamp
|
|
|
|
|
|
4 TIMESTAMP config-timestamp
|
|
|
|
|
|
2 c number of CRTCs
|
|
|
|
|
|
2 o number of outputs
|
|
|
|
|
|
2 m number of modeinfos
|
|
|
|
|
|
2 b total bytes in mode names
|
|
|
|
|
|
8 unused
|
|
|
|
|
|
4c LISTofCRTC crtcs
|
|
|
|
|
|
4o LISTofOUTPUT outputs
|
|
|
|
|
|
32m LISTofMODEINFO modeinfos
|
|
|
|
|
|
b STRING8 mode names
|
|
|
|
|
|
p unused, p=pad(b)
|
|
|
|
|
|
└───
|
|
|
|
|
|
|
2008-11-24 16:22:11 -08:00
|
|
|
|
┌───
|
|
|
|
|
|
RRSetCrtcTransform
|
|
|
|
|
|
1 CARD8 major opcode
|
|
|
|
|
|
1 26 RandR opcode
|
|
|
|
|
|
2 12+(n+p)/4+v length
|
|
|
|
|
|
4 CRTC crtc
|
|
|
|
|
|
36 TRANSFORM transform
|
|
|
|
|
|
2 CARD16 filter length
|
|
|
|
|
|
2 unused
|
|
|
|
|
|
n STRING8 filter name
|
|
|
|
|
|
p unused, p=pad(n)
|
|
|
|
|
|
4v FIXED filter params
|
|
|
|
|
|
└───
|
2009-06-05 20:37:24 -07:00
|
|
|
|
|
2008-11-24 16:22:11 -08:00
|
|
|
|
┌───
|
|
|
|
|
|
RRGetCrtcTransform
|
|
|
|
|
|
1 CARD8 major opcode
|
|
|
|
|
|
1 27 RandR opcode
|
|
|
|
|
|
2 2 length
|
|
|
|
|
|
4 CRTC crtc
|
|
|
|
|
|
▶
|
|
|
|
|
|
1 1 Reply
|
|
|
|
|
|
1 unused
|
|
|
|
|
|
2 CARD16 sequence number
|
|
|
|
|
|
4 16+(pn+pnp)/4+(cn+cnp)/4+pf+cf reply length
|
|
|
|
|
|
36 TRANSFORM pending transform
|
|
|
|
|
|
1 BOOL has transforms
|
|
|
|
|
|
3 unused
|
|
|
|
|
|
36 TRANSFORM current transform
|
|
|
|
|
|
4 unused
|
|
|
|
|
|
2 pn pending filter name length
|
|
|
|
|
|
2 pf pending filter num params
|
|
|
|
|
|
2 cn current filter name length
|
|
|
|
|
|
2 cf current filter num params
|
|
|
|
|
|
pn STRING8 pending filter name
|
|
|
|
|
|
pnp unused, pnp=pad(pn)
|
|
|
|
|
|
4*pf FIXED pending filter params
|
|
|
|
|
|
cn STRING8 current filter name
|
|
|
|
|
|
cnp unused, cnp=pad(cn)
|
|
|
|
|
|
4*cf FIXED current filter params
|
|
|
|
|
|
└───
|
2009-06-05 20:37:24 -07:00
|
|
|
|
|
2008-11-28 18:30:22 +01:00
|
|
|
|
┌───
|
|
|
|
|
|
RRGetPanning
|
|
|
|
|
|
1 CARD8 major opcode
|
|
|
|
|
|
1 28 RandR opcode
|
2008-12-04 15:44:12 +01:00
|
|
|
|
2 2 length
|
2008-11-28 18:30:22 +01:00
|
|
|
|
4 CRTC crtc
|
|
|
|
|
|
▶
|
|
|
|
|
|
1 1 Reply
|
|
|
|
|
|
1 RRCONFIGSTATUS status
|
|
|
|
|
|
2 CARD16 sequence number
|
|
|
|
|
|
4 1 reply length
|
|
|
|
|
|
4 TIMESTAMP timestamp
|
|
|
|
|
|
2 CARD16 left
|
|
|
|
|
|
2 CARD16 top
|
|
|
|
|
|
2 CARD16 width
|
|
|
|
|
|
2 CARD16 height
|
|
|
|
|
|
2 CARD16 track_left
|
|
|
|
|
|
2 CARD16 track_top
|
|
|
|
|
|
2 CARD16 track_width
|
|
|
|
|
|
2 CARD16 track_height
|
|
|
|
|
|
2 INT16 border_left
|
|
|
|
|
|
2 INT16 border_top
|
|
|
|
|
|
2 INT16 border_right
|
|
|
|
|
|
2 INT16 border_bottom
|
|
|
|
|
|
└───
|
|
|
|
|
|
┌───
|
|
|
|
|
|
RRSetPanning
|
|
|
|
|
|
1 CARD8 major opcode
|
|
|
|
|
|
1 29 RandR opcode
|
2008-12-04 15:44:12 +01:00
|
|
|
|
2 9 length
|
2008-11-28 18:30:22 +01:00
|
|
|
|
4 CRTC crtc
|
|
|
|
|
|
4 TIMESTAMP timestamp
|
|
|
|
|
|
2 CARD16 left
|
|
|
|
|
|
2 CARD16 top
|
|
|
|
|
|
2 CARD16 width
|
|
|
|
|
|
2 CARD16 height
|
|
|
|
|
|
2 CARD16 track_left
|
|
|
|
|
|
2 CARD16 track_top
|
|
|
|
|
|
2 CARD16 track_width
|
|
|
|
|
|
2 CARD16 track_height
|
|
|
|
|
|
2 INT16 border_left
|
|
|
|
|
|
2 INT16 border_top
|
|
|
|
|
|
2 INT16 border_right
|
|
|
|
|
|
2 INT16 border_bottom
|
|
|
|
|
|
▶
|
|
|
|
|
|
1 1 Reply
|
|
|
|
|
|
1 RRCONFIGSTATUS status
|
|
|
|
|
|
2 CARD16 sequence number
|
|
|
|
|
|
4 0 reply length
|
|
|
|
|
|
4 TIMESTAMP new timestamp
|
|
|
|
|
|
20 unused
|
|
|
|
|
|
└───
|
|
|
|
|
|
|
2008-12-10 11:15:48 -05:00
|
|
|
|
┌───
|
|
|
|
|
|
RRSetOutputPrimary
|
|
|
|
|
|
1 CARD8 major opcode
|
|
|
|
|
|
1 30 RandR opcode
|
|
|
|
|
|
2 3 length
|
|
|
|
|
|
4 WINDOW window
|
|
|
|
|
|
4 OUTPUT output
|
|
|
|
|
|
└───
|
2009-06-05 20:37:24 -07:00
|
|
|
|
|
2008-12-10 11:15:48 -05:00
|
|
|
|
┌───
|
|
|
|
|
|
RRGetOutputPrimary
|
|
|
|
|
|
1 CARD8 major opcode
|
|
|
|
|
|
1 31 RandR opcode
|
|
|
|
|
|
2 2 length
|
|
|
|
|
|
4 WINDOW window
|
|
|
|
|
|
▶
|
|
|
|
|
|
1 1 Reply
|
|
|
|
|
|
1 unused
|
|
|
|
|
|
2 CARD16 sequence number
|
|
|
|
|
|
4 CARD32 length
|
|
|
|
|
|
4 OUTPUT output
|
|
|
|
|
|
4 CARD32 pad1
|
|
|
|
|
|
4 CARD32 pad2
|
|
|
|
|
|
4 CARD32 pad3
|
|
|
|
|
|
4 CARD32 pad4
|
|
|
|
|
|
└───
|
|
|
|
|
|
|
randr: add provider object (v8)
A provider object represents a GPU or virtual device that provides
rendering or output services to the X server. This protocol
allow controlling provider objects for output and offload slave devices.
v1.1: fix typo add missing define
v2: rename nProperties back to nAtoms, makes server simpler to c-n-p,
add missing Get request/reply
v3: bring back configure property, no point in diverging from the
output property code without good reason.
also fix typo pointed out on irc by rei4dan.
v3.1: drop cut-n-paste, increase RRNumberRequests
v4: reviewed by Aaron, address comments:
Fix provider error code
add missing notify, remove dri2 references, fix c-n-p issues.
v5: add provider change notify event with current role.
v5.1: fix cut-n-paste
v6:
document flags, fix whitespace, add better errors for SetProviderRoles,
add new events, fix pending language.
v6.1: add missing change notify event struct + missing padding
v7: fix a bunch more tab/spaces, add appendix sections for requests, events
and errors, remove multimaster flag in favour of max master counter,
move some members around to follow other events.
v7.1 fix maxMaster + wrong comment, one whitespace
v7.2 bump to being randr 1.4, fix some too generic names.
v7.3 remove dynamic flag, fix some language
v8 overhaul complete protocol, remove set provider roles, add specific
methods for setting offload sinks and output sources, add a list
of associated providers into the get provider info struct.
Earlier-review-by: Aaron Plattner <aplattner@nvidia.com>
Reviewed-by: Keith Packard <keithp@keithp.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
2012-01-20 17:38:16 +00:00
|
|
|
|
A.2.3 Protocol Requests added with version 1.4
|
|
|
|
|
|
|
|
|
|
|
|
┌───
|
|
|
|
|
|
RRGetProviders
|
|
|
|
|
|
1 CARD8 major opcode
|
|
|
|
|
|
1 32 RandR opcode
|
|
|
|
|
|
2 2 length
|
|
|
|
|
|
4 WINDOW window
|
|
|
|
|
|
▶
|
|
|
|
|
|
1 1 Reply
|
|
|
|
|
|
1 unused
|
|
|
|
|
|
2 CARD16 sequence number
|
2012-08-27 23:28:22 -07:00
|
|
|
|
4 p length
|
randr: add provider object (v8)
A provider object represents a GPU or virtual device that provides
rendering or output services to the X server. This protocol
allow controlling provider objects for output and offload slave devices.
v1.1: fix typo add missing define
v2: rename nProperties back to nAtoms, makes server simpler to c-n-p,
add missing Get request/reply
v3: bring back configure property, no point in diverging from the
output property code without good reason.
also fix typo pointed out on irc by rei4dan.
v3.1: drop cut-n-paste, increase RRNumberRequests
v4: reviewed by Aaron, address comments:
Fix provider error code
add missing notify, remove dri2 references, fix c-n-p issues.
v5: add provider change notify event with current role.
v5.1: fix cut-n-paste
v6:
document flags, fix whitespace, add better errors for SetProviderRoles,
add new events, fix pending language.
v6.1: add missing change notify event struct + missing padding
v7: fix a bunch more tab/spaces, add appendix sections for requests, events
and errors, remove multimaster flag in favour of max master counter,
move some members around to follow other events.
v7.1 fix maxMaster + wrong comment, one whitespace
v7.2 bump to being randr 1.4, fix some too generic names.
v7.3 remove dynamic flag, fix some language
v8 overhaul complete protocol, remove set provider roles, add specific
methods for setting offload sinks and output sources, add a list
of associated providers into the get provider info struct.
Earlier-review-by: Aaron Plattner <aplattner@nvidia.com>
Reviewed-by: Keith Packard <keithp@keithp.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
2012-01-20 17:38:16 +00:00
|
|
|
|
4 TIMESTAMP timestamp
|
|
|
|
|
|
2 p number of Providers
|
2012-08-27 23:28:22 -07:00
|
|
|
|
18 unused
|
randr: add provider object (v8)
A provider object represents a GPU or virtual device that provides
rendering or output services to the X server. This protocol
allow controlling provider objects for output and offload slave devices.
v1.1: fix typo add missing define
v2: rename nProperties back to nAtoms, makes server simpler to c-n-p,
add missing Get request/reply
v3: bring back configure property, no point in diverging from the
output property code without good reason.
also fix typo pointed out on irc by rei4dan.
v3.1: drop cut-n-paste, increase RRNumberRequests
v4: reviewed by Aaron, address comments:
Fix provider error code
add missing notify, remove dri2 references, fix c-n-p issues.
v5: add provider change notify event with current role.
v5.1: fix cut-n-paste
v6:
document flags, fix whitespace, add better errors for SetProviderRoles,
add new events, fix pending language.
v6.1: add missing change notify event struct + missing padding
v7: fix a bunch more tab/spaces, add appendix sections for requests, events
and errors, remove multimaster flag in favour of max master counter,
move some members around to follow other events.
v7.1 fix maxMaster + wrong comment, one whitespace
v7.2 bump to being randr 1.4, fix some too generic names.
v7.3 remove dynamic flag, fix some language
v8 overhaul complete protocol, remove set provider roles, add specific
methods for setting offload sinks and output sources, add a list
of associated providers into the get provider info struct.
Earlier-review-by: Aaron Plattner <aplattner@nvidia.com>
Reviewed-by: Keith Packard <keithp@keithp.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
2012-01-20 17:38:16 +00:00
|
|
|
|
4p LISTofPROVIDERS providers
|
2012-08-28 00:07:01 -07:00
|
|
|
|
└───
|
randr: add provider object (v8)
A provider object represents a GPU or virtual device that provides
rendering or output services to the X server. This protocol
allow controlling provider objects for output and offload slave devices.
v1.1: fix typo add missing define
v2: rename nProperties back to nAtoms, makes server simpler to c-n-p,
add missing Get request/reply
v3: bring back configure property, no point in diverging from the
output property code without good reason.
also fix typo pointed out on irc by rei4dan.
v3.1: drop cut-n-paste, increase RRNumberRequests
v4: reviewed by Aaron, address comments:
Fix provider error code
add missing notify, remove dri2 references, fix c-n-p issues.
v5: add provider change notify event with current role.
v5.1: fix cut-n-paste
v6:
document flags, fix whitespace, add better errors for SetProviderRoles,
add new events, fix pending language.
v6.1: add missing change notify event struct + missing padding
v7: fix a bunch more tab/spaces, add appendix sections for requests, events
and errors, remove multimaster flag in favour of max master counter,
move some members around to follow other events.
v7.1 fix maxMaster + wrong comment, one whitespace
v7.2 bump to being randr 1.4, fix some too generic names.
v7.3 remove dynamic flag, fix some language
v8 overhaul complete protocol, remove set provider roles, add specific
methods for setting offload sinks and output sources, add a list
of associated providers into the get provider info struct.
Earlier-review-by: Aaron Plattner <aplattner@nvidia.com>
Reviewed-by: Keith Packard <keithp@keithp.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
2012-01-20 17:38:16 +00:00
|
|
|
|
┌───
|
|
|
|
|
|
RRGetProviderInfo
|
|
|
|
|
|
1 CARD8 major opcode
|
|
|
|
|
|
1 33 RandR opcode
|
|
|
|
|
|
2 3 length
|
|
|
|
|
|
4 PROVIDER provider
|
|
|
|
|
|
4 TIMESTAMP config-timestamp
|
|
|
|
|
|
▶
|
|
|
|
|
|
1 1 Reply
|
|
|
|
|
|
1 RRCONFIGSTATUS status
|
|
|
|
|
|
2 CARD16 sequence number
|
|
|
|
|
|
4 1+c+o+(a*2)+(n+p)/4 reply length
|
2012-08-26 18:58:06 -07:00
|
|
|
|
4 TIMESTAMP timestamp
|
|
|
|
|
|
4 CARD32 capabilities
|
randr: add provider object (v8)
A provider object represents a GPU or virtual device that provides
rendering or output services to the X server. This protocol
allow controlling provider objects for output and offload slave devices.
v1.1: fix typo add missing define
v2: rename nProperties back to nAtoms, makes server simpler to c-n-p,
add missing Get request/reply
v3: bring back configure property, no point in diverging from the
output property code without good reason.
also fix typo pointed out on irc by rei4dan.
v3.1: drop cut-n-paste, increase RRNumberRequests
v4: reviewed by Aaron, address comments:
Fix provider error code
add missing notify, remove dri2 references, fix c-n-p issues.
v5: add provider change notify event with current role.
v5.1: fix cut-n-paste
v6:
document flags, fix whitespace, add better errors for SetProviderRoles,
add new events, fix pending language.
v6.1: add missing change notify event struct + missing padding
v7: fix a bunch more tab/spaces, add appendix sections for requests, events
and errors, remove multimaster flag in favour of max master counter,
move some members around to follow other events.
v7.1 fix maxMaster + wrong comment, one whitespace
v7.2 bump to being randr 1.4, fix some too generic names.
v7.3 remove dynamic flag, fix some language
v8 overhaul complete protocol, remove set provider roles, add specific
methods for setting offload sinks and output sources, add a list
of associated providers into the get provider info struct.
Earlier-review-by: Aaron Plattner <aplattner@nvidia.com>
Reviewed-by: Keith Packard <keithp@keithp.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
2012-01-20 17:38:16 +00:00
|
|
|
|
2 c number of crtcs
|
|
|
|
|
|
2 o number of outputs
|
|
|
|
|
|
2 a number of associated providers
|
|
|
|
|
|
2 n length of name
|
2012-08-27 23:28:22 -07:00
|
|
|
|
8 unused
|
randr: add provider object (v8)
A provider object represents a GPU or virtual device that provides
rendering or output services to the X server. This protocol
allow controlling provider objects for output and offload slave devices.
v1.1: fix typo add missing define
v2: rename nProperties back to nAtoms, makes server simpler to c-n-p,
add missing Get request/reply
v3: bring back configure property, no point in diverging from the
output property code without good reason.
also fix typo pointed out on irc by rei4dan.
v3.1: drop cut-n-paste, increase RRNumberRequests
v4: reviewed by Aaron, address comments:
Fix provider error code
add missing notify, remove dri2 references, fix c-n-p issues.
v5: add provider change notify event with current role.
v5.1: fix cut-n-paste
v6:
document flags, fix whitespace, add better errors for SetProviderRoles,
add new events, fix pending language.
v6.1: add missing change notify event struct + missing padding
v7: fix a bunch more tab/spaces, add appendix sections for requests, events
and errors, remove multimaster flag in favour of max master counter,
move some members around to follow other events.
v7.1 fix maxMaster + wrong comment, one whitespace
v7.2 bump to being randr 1.4, fix some too generic names.
v7.3 remove dynamic flag, fix some language
v8 overhaul complete protocol, remove set provider roles, add specific
methods for setting offload sinks and output sources, add a list
of associated providers into the get provider info struct.
Earlier-review-by: Aaron Plattner <aplattner@nvidia.com>
Reviewed-by: Keith Packard <keithp@keithp.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
2012-01-20 17:38:16 +00:00
|
|
|
|
4c LISTofCRTC crtcs
|
|
|
|
|
|
4o LISTofOUTPUT outputs
|
|
|
|
|
|
4a LISTofPROVIDER associated providers
|
|
|
|
|
|
4a CARD32 associated provider capability
|
|
|
|
|
|
n STRING8 name
|
|
|
|
|
|
p unused, p=pad(n)
|
2012-08-28 00:07:01 -07:00
|
|
|
|
└───
|
randr: add provider object (v8)
A provider object represents a GPU or virtual device that provides
rendering or output services to the X server. This protocol
allow controlling provider objects for output and offload slave devices.
v1.1: fix typo add missing define
v2: rename nProperties back to nAtoms, makes server simpler to c-n-p,
add missing Get request/reply
v3: bring back configure property, no point in diverging from the
output property code without good reason.
also fix typo pointed out on irc by rei4dan.
v3.1: drop cut-n-paste, increase RRNumberRequests
v4: reviewed by Aaron, address comments:
Fix provider error code
add missing notify, remove dri2 references, fix c-n-p issues.
v5: add provider change notify event with current role.
v5.1: fix cut-n-paste
v6:
document flags, fix whitespace, add better errors for SetProviderRoles,
add new events, fix pending language.
v6.1: add missing change notify event struct + missing padding
v7: fix a bunch more tab/spaces, add appendix sections for requests, events
and errors, remove multimaster flag in favour of max master counter,
move some members around to follow other events.
v7.1 fix maxMaster + wrong comment, one whitespace
v7.2 bump to being randr 1.4, fix some too generic names.
v7.3 remove dynamic flag, fix some language
v8 overhaul complete protocol, remove set provider roles, add specific
methods for setting offload sinks and output sources, add a list
of associated providers into the get provider info struct.
Earlier-review-by: Aaron Plattner <aplattner@nvidia.com>
Reviewed-by: Keith Packard <keithp@keithp.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
2012-01-20 17:38:16 +00:00
|
|
|
|
┌───
|
|
|
|
|
|
RRSetProviderOffloadSink
|
|
|
|
|
|
1 CARD8 major opcode
|
|
|
|
|
|
1 34 RandR opcode
|
2012-08-27 23:59:02 -07:00
|
|
|
|
2 4 length
|
randr: add provider object (v8)
A provider object represents a GPU or virtual device that provides
rendering or output services to the X server. This protocol
allow controlling provider objects for output and offload slave devices.
v1.1: fix typo add missing define
v2: rename nProperties back to nAtoms, makes server simpler to c-n-p,
add missing Get request/reply
v3: bring back configure property, no point in diverging from the
output property code without good reason.
also fix typo pointed out on irc by rei4dan.
v3.1: drop cut-n-paste, increase RRNumberRequests
v4: reviewed by Aaron, address comments:
Fix provider error code
add missing notify, remove dri2 references, fix c-n-p issues.
v5: add provider change notify event with current role.
v5.1: fix cut-n-paste
v6:
document flags, fix whitespace, add better errors for SetProviderRoles,
add new events, fix pending language.
v6.1: add missing change notify event struct + missing padding
v7: fix a bunch more tab/spaces, add appendix sections for requests, events
and errors, remove multimaster flag in favour of max master counter,
move some members around to follow other events.
v7.1 fix maxMaster + wrong comment, one whitespace
v7.2 bump to being randr 1.4, fix some too generic names.
v7.3 remove dynamic flag, fix some language
v8 overhaul complete protocol, remove set provider roles, add specific
methods for setting offload sinks and output sources, add a list
of associated providers into the get provider info struct.
Earlier-review-by: Aaron Plattner <aplattner@nvidia.com>
Reviewed-by: Keith Packard <keithp@keithp.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
2012-01-20 17:38:16 +00:00
|
|
|
|
4 PROVIDER provider
|
|
|
|
|
|
4 PROVIDER offload sink provider
|
|
|
|
|
|
4 TIMESTAMP timestamp
|
2012-08-28 00:07:01 -07:00
|
|
|
|
└───
|
randr: add provider object (v8)
A provider object represents a GPU or virtual device that provides
rendering or output services to the X server. This protocol
allow controlling provider objects for output and offload slave devices.
v1.1: fix typo add missing define
v2: rename nProperties back to nAtoms, makes server simpler to c-n-p,
add missing Get request/reply
v3: bring back configure property, no point in diverging from the
output property code without good reason.
also fix typo pointed out on irc by rei4dan.
v3.1: drop cut-n-paste, increase RRNumberRequests
v4: reviewed by Aaron, address comments:
Fix provider error code
add missing notify, remove dri2 references, fix c-n-p issues.
v5: add provider change notify event with current role.
v5.1: fix cut-n-paste
v6:
document flags, fix whitespace, add better errors for SetProviderRoles,
add new events, fix pending language.
v6.1: add missing change notify event struct + missing padding
v7: fix a bunch more tab/spaces, add appendix sections for requests, events
and errors, remove multimaster flag in favour of max master counter,
move some members around to follow other events.
v7.1 fix maxMaster + wrong comment, one whitespace
v7.2 bump to being randr 1.4, fix some too generic names.
v7.3 remove dynamic flag, fix some language
v8 overhaul complete protocol, remove set provider roles, add specific
methods for setting offload sinks and output sources, add a list
of associated providers into the get provider info struct.
Earlier-review-by: Aaron Plattner <aplattner@nvidia.com>
Reviewed-by: Keith Packard <keithp@keithp.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
2012-01-20 17:38:16 +00:00
|
|
|
|
┌───
|
|
|
|
|
|
RRSetProviderOutputSource
|
|
|
|
|
|
1 CARD8 major opcode
|
|
|
|
|
|
1 35 RandR opcode
|
2012-08-27 23:59:02 -07:00
|
|
|
|
2 4 length
|
randr: add provider object (v8)
A provider object represents a GPU or virtual device that provides
rendering or output services to the X server. This protocol
allow controlling provider objects for output and offload slave devices.
v1.1: fix typo add missing define
v2: rename nProperties back to nAtoms, makes server simpler to c-n-p,
add missing Get request/reply
v3: bring back configure property, no point in diverging from the
output property code without good reason.
also fix typo pointed out on irc by rei4dan.
v3.1: drop cut-n-paste, increase RRNumberRequests
v4: reviewed by Aaron, address comments:
Fix provider error code
add missing notify, remove dri2 references, fix c-n-p issues.
v5: add provider change notify event with current role.
v5.1: fix cut-n-paste
v6:
document flags, fix whitespace, add better errors for SetProviderRoles,
add new events, fix pending language.
v6.1: add missing change notify event struct + missing padding
v7: fix a bunch more tab/spaces, add appendix sections for requests, events
and errors, remove multimaster flag in favour of max master counter,
move some members around to follow other events.
v7.1 fix maxMaster + wrong comment, one whitespace
v7.2 bump to being randr 1.4, fix some too generic names.
v7.3 remove dynamic flag, fix some language
v8 overhaul complete protocol, remove set provider roles, add specific
methods for setting offload sinks and output sources, add a list
of associated providers into the get provider info struct.
Earlier-review-by: Aaron Plattner <aplattner@nvidia.com>
Reviewed-by: Keith Packard <keithp@keithp.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
2012-01-20 17:38:16 +00:00
|
|
|
|
4 PROVIDER provider
|
|
|
|
|
|
4 PROVIDER output source provider
|
|
|
|
|
|
4 TIMESTAMP timestamp
|
2012-08-28 00:07:01 -07:00
|
|
|
|
└───
|
randr: add provider object (v8)
A provider object represents a GPU or virtual device that provides
rendering or output services to the X server. This protocol
allow controlling provider objects for output and offload slave devices.
v1.1: fix typo add missing define
v2: rename nProperties back to nAtoms, makes server simpler to c-n-p,
add missing Get request/reply
v3: bring back configure property, no point in diverging from the
output property code without good reason.
also fix typo pointed out on irc by rei4dan.
v3.1: drop cut-n-paste, increase RRNumberRequests
v4: reviewed by Aaron, address comments:
Fix provider error code
add missing notify, remove dri2 references, fix c-n-p issues.
v5: add provider change notify event with current role.
v5.1: fix cut-n-paste
v6:
document flags, fix whitespace, add better errors for SetProviderRoles,
add new events, fix pending language.
v6.1: add missing change notify event struct + missing padding
v7: fix a bunch more tab/spaces, add appendix sections for requests, events
and errors, remove multimaster flag in favour of max master counter,
move some members around to follow other events.
v7.1 fix maxMaster + wrong comment, one whitespace
v7.2 bump to being randr 1.4, fix some too generic names.
v7.3 remove dynamic flag, fix some language
v8 overhaul complete protocol, remove set provider roles, add specific
methods for setting offload sinks and output sources, add a list
of associated providers into the get provider info struct.
Earlier-review-by: Aaron Plattner <aplattner@nvidia.com>
Reviewed-by: Keith Packard <keithp@keithp.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
2012-01-20 17:38:16 +00:00
|
|
|
|
┌───
|
|
|
|
|
|
RRListProviderProperties
|
|
|
|
|
|
1 CARD8 major opcode
|
|
|
|
|
|
1 36 RandR opcode
|
|
|
|
|
|
2 2 length
|
|
|
|
|
|
4 PROVIDER provider
|
|
|
|
|
|
▶
|
|
|
|
|
|
1 1 Reply
|
|
|
|
|
|
1 unused
|
|
|
|
|
|
2 CARD16 sequence number
|
|
|
|
|
|
4 n reply length
|
|
|
|
|
|
2 n number of ATOMs in atoms
|
|
|
|
|
|
22 unused
|
|
|
|
|
|
4n LISTofATOM atoms
|
|
|
|
|
|
└───
|
|
|
|
|
|
┌───
|
|
|
|
|
|
RRQueryProviderProperty
|
|
|
|
|
|
1 CARD8 major opcode
|
|
|
|
|
|
1 37 RandR opcode
|
|
|
|
|
|
2 3 request length
|
|
|
|
|
|
4 PROVIDER provider
|
|
|
|
|
|
4 ATOM property
|
|
|
|
|
|
▶
|
|
|
|
|
|
1 1 Reply
|
|
|
|
|
|
1 unused
|
|
|
|
|
|
2 CARD16 sequence number
|
|
|
|
|
|
4 n reply length
|
|
|
|
|
|
1 BOOL pending
|
|
|
|
|
|
1 BOOL range
|
|
|
|
|
|
1 BOOL immutable
|
|
|
|
|
|
21 unused
|
|
|
|
|
|
4n LISTofINT32 valid values
|
|
|
|
|
|
└───
|
|
|
|
|
|
┌───
|
|
|
|
|
|
RRConfigureProviderProperty
|
|
|
|
|
|
1 CARD8 major opcode
|
|
|
|
|
|
1 38 RandR opcode
|
|
|
|
|
|
2 4+n request length
|
|
|
|
|
|
4 PROVIDER provider
|
|
|
|
|
|
4 ATOM property
|
|
|
|
|
|
1 BOOL pending
|
|
|
|
|
|
1 BOOL range
|
|
|
|
|
|
2 unused
|
|
|
|
|
|
4n LISTofINT32 valid values
|
|
|
|
|
|
└───
|
|
|
|
|
|
┌───
|
|
|
|
|
|
RRChangeProviderProperty
|
|
|
|
|
|
1 CARD8 major opcode
|
|
|
|
|
|
1 39 RandR opcode
|
|
|
|
|
|
2 6+(n+p)/4 request length
|
|
|
|
|
|
4 PROVIDER provider
|
|
|
|
|
|
4 ATOM property
|
|
|
|
|
|
4 ATOM type
|
|
|
|
|
|
1 CARD8 format
|
|
|
|
|
|
1 mode
|
|
|
|
|
|
0 Replace
|
|
|
|
|
|
1 Prepend
|
|
|
|
|
|
2 Append
|
|
|
|
|
|
2 unused
|
|
|
|
|
|
4 CARD32 length of data in format units
|
|
|
|
|
|
(= n for format = 8)
|
|
|
|
|
|
(= n/2 for format = 16)
|
|
|
|
|
|
(= n/4 for format = 32)
|
|
|
|
|
|
n LISTofBYTE data
|
|
|
|
|
|
(n is a multiple of 2 for format = 16)
|
|
|
|
|
|
(n is a multiple of 4 for format = 32)
|
|
|
|
|
|
p unused, p=pad(n)
|
|
|
|
|
|
└───
|
|
|
|
|
|
┌───
|
|
|
|
|
|
RRDeleteProviderProperty
|
|
|
|
|
|
1 CARD8 major opcode
|
|
|
|
|
|
1 40 RandR opcode
|
|
|
|
|
|
2 3 request length
|
|
|
|
|
|
4 PROVIDER provider
|
|
|
|
|
|
4 ATOM property
|
|
|
|
|
|
└───
|
|
|
|
|
|
┌───
|
|
|
|
|
|
RRGetProviderProperty
|
|
|
|
|
|
1 CARD8 major opcode
|
|
|
|
|
|
1 41 RandR opcode
|
|
|
|
|
|
2 7 request length
|
|
|
|
|
|
4 PROVIDER provider
|
|
|
|
|
|
4 ATOM property
|
|
|
|
|
|
4 ATOM type
|
|
|
|
|
|
0 AnyPropertyType
|
|
|
|
|
|
4 CARD32 long-offset
|
|
|
|
|
|
4 CARD32 long-length
|
|
|
|
|
|
1 BOOL delete
|
|
|
|
|
|
1 BOOL pending
|
|
|
|
|
|
2 unused
|
|
|
|
|
|
▶
|
|
|
|
|
|
1 1 Reply
|
|
|
|
|
|
1 CARD8 format
|
|
|
|
|
|
2 CARD16 sequence number
|
|
|
|
|
|
4 (n+p)/4 reply length
|
|
|
|
|
|
4 ATOM type
|
|
|
|
|
|
0 None
|
|
|
|
|
|
4 CARD32 bytes-after
|
|
|
|
|
|
4 CARD32 length of value in format units
|
|
|
|
|
|
(= 0 for format = 0)
|
|
|
|
|
|
(= n for format = 8)
|
|
|
|
|
|
(= n/2 for format = 16)
|
|
|
|
|
|
(= n/4 for format = 32)
|
|
|
|
|
|
12 unused
|
|
|
|
|
|
n LISTofBYTE value
|
|
|
|
|
|
(n is zero for format = 0)
|
|
|
|
|
|
(n is a multiple of 2 for format = 16)
|
|
|
|
|
|
(n is a multiple of 4 for format = 32)
|
|
|
|
|
|
p unused, p=pad(n)
|
|
|
|
|
|
└───
|
|
|
|
|
|
|
2006-06-25 03:35:24 +02:00
|
|
|
|
A.3 Protocol Events
|
2003-11-14 16:48:43 +00:00
|
|
|
|
|
2006-09-12 16:48:22 -07:00
|
|
|
|
┌───
|
|
|
|
|
|
RRScreenChangeNotify
|
2003-11-14 16:48:43 +00:00
|
|
|
|
1 Base + 0 code
|
|
|
|
|
|
1 ROTATION new rotation and reflection
|
|
|
|
|
|
2 CARD16 sequence number
|
|
|
|
|
|
4 TIMESTAMP timestamp
|
|
|
|
|
|
4 TIMESTAMP configuration timestamp
|
|
|
|
|
|
4 WINDOW root window
|
|
|
|
|
|
4 WINDOW request window
|
|
|
|
|
|
2 SIZEID size ID
|
|
|
|
|
|
2 SUBPIXELORDER subpixel order defined in Render
|
|
|
|
|
|
2 CARD16 width in pixels
|
|
|
|
|
|
2 CARD16 height in pixels
|
|
|
|
|
|
2 CARD16 width in millimeters
|
|
|
|
|
|
2 CARD16 height in millimeters
|
2006-09-12 16:48:22 -07:00
|
|
|
|
└───
|
2003-11-14 16:48:43 +00:00
|
|
|
|
|
2006-06-25 03:35:24 +02:00
|
|
|
|
A.3.1 Protocol Events added with version 1.2
|
2003-11-14 16:48:43 +00:00
|
|
|
|
|
2006-09-12 16:48:22 -07:00
|
|
|
|
┌───
|
2006-09-14 23:53:04 -07:00
|
|
|
|
RRCrtcChangeNotify
|
2006-06-26 12:42:50 +02:00
|
|
|
|
1 Base + 1 code
|
|
|
|
|
|
1 0 sub-code
|
|
|
|
|
|
2 CARD16 sequence number
|
|
|
|
|
|
4 TIMESTAMP timestamp
|
2006-09-14 23:53:04 -07:00
|
|
|
|
4 WINDOW request window
|
|
|
|
|
|
4 CRTC crtc affected
|
|
|
|
|
|
4 MODE mode in use
|
|
|
|
|
|
2 ROTATION new rotation and reflection
|
|
|
|
|
|
2 unused
|
|
|
|
|
|
2 INT16 x
|
|
|
|
|
|
2 INT16 y
|
|
|
|
|
|
2 CARD16 width
|
|
|
|
|
|
2 CARD16 height
|
|
|
|
|
|
└───
|
|
|
|
|
|
┌───
|
|
|
|
|
|
RROutputChangeNotify
|
|
|
|
|
|
1 Base + 1 code
|
|
|
|
|
|
1 1 sub-code
|
|
|
|
|
|
2 CARD16 sequence number
|
|
|
|
|
|
4 TIMESTAMP timestamp
|
2006-06-26 12:42:50 +02:00
|
|
|
|
4 TIMESTAMP configuration timestamp
|
|
|
|
|
|
4 WINDOW request window
|
2006-09-12 16:48:22 -07:00
|
|
|
|
4 OUTPUT output affected
|
|
|
|
|
|
4 CRTC crtc in use
|
|
|
|
|
|
4 MODE mode in use
|
|
|
|
|
|
2 ROTATION rotation in use
|
|
|
|
|
|
1 CONNECTION connection status
|
|
|
|
|
|
1 SUBPIXELORDER subpixel order
|
|
|
|
|
|
└───
|
|
|
|
|
|
┌───
|
2006-09-14 23:53:04 -07:00
|
|
|
|
RROutputPropertyNotify
|
|
|
|
|
|
1 Base + 1 code
|
|
|
|
|
|
1 2 sub-code
|
2006-09-12 16:48:22 -07:00
|
|
|
|
2 CARD16 sequence number
|
2006-09-14 23:53:04 -07:00
|
|
|
|
4 WINDOW window
|
|
|
|
|
|
4 OUTPUT output
|
|
|
|
|
|
4 ATOM atom
|
|
|
|
|
|
4 TIMESTAMP time
|
|
|
|
|
|
1 state
|
|
|
|
|
|
0 NewValue
|
|
|
|
|
|
1 Deleted
|
|
|
|
|
|
11 unused
|
2006-09-12 16:48:22 -07:00
|
|
|
|
└───
|
2006-06-26 12:42:50 +02:00
|
|
|
|
|
randr: add provider object (v8)
A provider object represents a GPU or virtual device that provides
rendering or output services to the X server. This protocol
allow controlling provider objects for output and offload slave devices.
v1.1: fix typo add missing define
v2: rename nProperties back to nAtoms, makes server simpler to c-n-p,
add missing Get request/reply
v3: bring back configure property, no point in diverging from the
output property code without good reason.
also fix typo pointed out on irc by rei4dan.
v3.1: drop cut-n-paste, increase RRNumberRequests
v4: reviewed by Aaron, address comments:
Fix provider error code
add missing notify, remove dri2 references, fix c-n-p issues.
v5: add provider change notify event with current role.
v5.1: fix cut-n-paste
v6:
document flags, fix whitespace, add better errors for SetProviderRoles,
add new events, fix pending language.
v6.1: add missing change notify event struct + missing padding
v7: fix a bunch more tab/spaces, add appendix sections for requests, events
and errors, remove multimaster flag in favour of max master counter,
move some members around to follow other events.
v7.1 fix maxMaster + wrong comment, one whitespace
v7.2 bump to being randr 1.4, fix some too generic names.
v7.3 remove dynamic flag, fix some language
v8 overhaul complete protocol, remove set provider roles, add specific
methods for setting offload sinks and output sources, add a list
of associated providers into the get provider info struct.
Earlier-review-by: Aaron Plattner <aplattner@nvidia.com>
Reviewed-by: Keith Packard <keithp@keithp.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
2012-01-20 17:38:16 +00:00
|
|
|
|
A.3.2 Protocol Events added with version 1.4
|
|
|
|
|
|
┌───
|
|
|
|
|
|
RRProviderChangeNotify
|
|
|
|
|
|
1 Base + 1 code
|
2012-08-26 22:50:05 -07:00
|
|
|
|
1 3 sub-code
|
randr: add provider object (v8)
A provider object represents a GPU or virtual device that provides
rendering or output services to the X server. This protocol
allow controlling provider objects for output and offload slave devices.
v1.1: fix typo add missing define
v2: rename nProperties back to nAtoms, makes server simpler to c-n-p,
add missing Get request/reply
v3: bring back configure property, no point in diverging from the
output property code without good reason.
also fix typo pointed out on irc by rei4dan.
v3.1: drop cut-n-paste, increase RRNumberRequests
v4: reviewed by Aaron, address comments:
Fix provider error code
add missing notify, remove dri2 references, fix c-n-p issues.
v5: add provider change notify event with current role.
v5.1: fix cut-n-paste
v6:
document flags, fix whitespace, add better errors for SetProviderRoles,
add new events, fix pending language.
v6.1: add missing change notify event struct + missing padding
v7: fix a bunch more tab/spaces, add appendix sections for requests, events
and errors, remove multimaster flag in favour of max master counter,
move some members around to follow other events.
v7.1 fix maxMaster + wrong comment, one whitespace
v7.2 bump to being randr 1.4, fix some too generic names.
v7.3 remove dynamic flag, fix some language
v8 overhaul complete protocol, remove set provider roles, add specific
methods for setting offload sinks and output sources, add a list
of associated providers into the get provider info struct.
Earlier-review-by: Aaron Plattner <aplattner@nvidia.com>
Reviewed-by: Keith Packard <keithp@keithp.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
2012-01-20 17:38:16 +00:00
|
|
|
|
2 CARD16 sequence number
|
|
|
|
|
|
4 TIMESTAMP timestamp
|
|
|
|
|
|
4 WINDOW request window
|
|
|
|
|
|
4 PROVIDER provider affected
|
|
|
|
|
|
16 unused
|
|
|
|
|
|
└───
|
|
|
|
|
|
┌───
|
|
|
|
|
|
RRProviderPropertyNotify
|
|
|
|
|
|
1 Base + 1 code
|
2012-08-26 22:50:05 -07:00
|
|
|
|
1 4 sub-code
|
randr: add provider object (v8)
A provider object represents a GPU or virtual device that provides
rendering or output services to the X server. This protocol
allow controlling provider objects for output and offload slave devices.
v1.1: fix typo add missing define
v2: rename nProperties back to nAtoms, makes server simpler to c-n-p,
add missing Get request/reply
v3: bring back configure property, no point in diverging from the
output property code without good reason.
also fix typo pointed out on irc by rei4dan.
v3.1: drop cut-n-paste, increase RRNumberRequests
v4: reviewed by Aaron, address comments:
Fix provider error code
add missing notify, remove dri2 references, fix c-n-p issues.
v5: add provider change notify event with current role.
v5.1: fix cut-n-paste
v6:
document flags, fix whitespace, add better errors for SetProviderRoles,
add new events, fix pending language.
v6.1: add missing change notify event struct + missing padding
v7: fix a bunch more tab/spaces, add appendix sections for requests, events
and errors, remove multimaster flag in favour of max master counter,
move some members around to follow other events.
v7.1 fix maxMaster + wrong comment, one whitespace
v7.2 bump to being randr 1.4, fix some too generic names.
v7.3 remove dynamic flag, fix some language
v8 overhaul complete protocol, remove set provider roles, add specific
methods for setting offload sinks and output sources, add a list
of associated providers into the get provider info struct.
Earlier-review-by: Aaron Plattner <aplattner@nvidia.com>
Reviewed-by: Keith Packard <keithp@keithp.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
2012-01-20 17:38:16 +00:00
|
|
|
|
2 CARD16 sequence number
|
|
|
|
|
|
4 WINDOW window
|
|
|
|
|
|
4 PROVIDER provider
|
|
|
|
|
|
4 ATOM atom
|
|
|
|
|
|
4 TIMESTAMP time
|
|
|
|
|
|
1 state
|
|
|
|
|
|
0 NewValue
|
|
|
|
|
|
1 Deleted
|
|
|
|
|
|
11 unused
|
|
|
|
|
|
└───
|
|
|
|
|
|
┌───
|
|
|
|
|
|
RRResourceChangeNotify
|
|
|
|
|
|
1 Base + 1 code
|
2012-08-26 22:50:05 -07:00
|
|
|
|
1 5 sub-code
|
randr: add provider object (v8)
A provider object represents a GPU or virtual device that provides
rendering or output services to the X server. This protocol
allow controlling provider objects for output and offload slave devices.
v1.1: fix typo add missing define
v2: rename nProperties back to nAtoms, makes server simpler to c-n-p,
add missing Get request/reply
v3: bring back configure property, no point in diverging from the
output property code without good reason.
also fix typo pointed out on irc by rei4dan.
v3.1: drop cut-n-paste, increase RRNumberRequests
v4: reviewed by Aaron, address comments:
Fix provider error code
add missing notify, remove dri2 references, fix c-n-p issues.
v5: add provider change notify event with current role.
v5.1: fix cut-n-paste
v6:
document flags, fix whitespace, add better errors for SetProviderRoles,
add new events, fix pending language.
v6.1: add missing change notify event struct + missing padding
v7: fix a bunch more tab/spaces, add appendix sections for requests, events
and errors, remove multimaster flag in favour of max master counter,
move some members around to follow other events.
v7.1 fix maxMaster + wrong comment, one whitespace
v7.2 bump to being randr 1.4, fix some too generic names.
v7.3 remove dynamic flag, fix some language
v8 overhaul complete protocol, remove set provider roles, add specific
methods for setting offload sinks and output sources, add a list
of associated providers into the get provider info struct.
Earlier-review-by: Aaron Plattner <aplattner@nvidia.com>
Reviewed-by: Keith Packard <keithp@keithp.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
2012-01-20 17:38:16 +00:00
|
|
|
|
2 CARD16 sequence number
|
|
|
|
|
|
4 TIMESTAMP time
|
|
|
|
|
|
4 WINDOW window
|
|
|
|
|
|
20 unused
|
|
|
|
|
|
└───
|
2006-09-17 23:41:55 -07:00
|
|
|
|
A.4 Protocol Errors
|
|
|
|
|
|
|
|
|
|
|
|
┌───
|
|
|
|
|
|
ERRORS
|
|
|
|
|
|
Base + 0 Output
|
|
|
|
|
|
Base + 1 Crtc
|
|
|
|
|
|
Base + 2 Mode
|
randr: add provider object (v8)
A provider object represents a GPU or virtual device that provides
rendering or output services to the X server. This protocol
allow controlling provider objects for output and offload slave devices.
v1.1: fix typo add missing define
v2: rename nProperties back to nAtoms, makes server simpler to c-n-p,
add missing Get request/reply
v3: bring back configure property, no point in diverging from the
output property code without good reason.
also fix typo pointed out on irc by rei4dan.
v3.1: drop cut-n-paste, increase RRNumberRequests
v4: reviewed by Aaron, address comments:
Fix provider error code
add missing notify, remove dri2 references, fix c-n-p issues.
v5: add provider change notify event with current role.
v5.1: fix cut-n-paste
v6:
document flags, fix whitespace, add better errors for SetProviderRoles,
add new events, fix pending language.
v6.1: add missing change notify event struct + missing padding
v7: fix a bunch more tab/spaces, add appendix sections for requests, events
and errors, remove multimaster flag in favour of max master counter,
move some members around to follow other events.
v7.1 fix maxMaster + wrong comment, one whitespace
v7.2 bump to being randr 1.4, fix some too generic names.
v7.3 remove dynamic flag, fix some language
v8 overhaul complete protocol, remove set provider roles, add specific
methods for setting offload sinks and output sources, add a list
of associated providers into the get provider info struct.
Earlier-review-by: Aaron Plattner <aplattner@nvidia.com>
Reviewed-by: Keith Packard <keithp@keithp.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
2012-01-20 17:38:16 +00:00
|
|
|
|
Base + 3 Provider
|
2006-09-17 23:41:55 -07:00
|
|
|
|
└───
|
2009-06-05 20:37:24 -07:00
|
|
|
|
|
2003-11-14 16:48:43 +00:00
|
|
|
|
Bibliography
|
|
|
|
|
|
|
|
|
|
|
|
[RANDR] Gettys, Jim and Keith Packard, "The X Resize and Rotate
|
|
|
|
|
|
Extension - RandR", Proceedings of the 2001 USENIX Annual
|
|
|
|
|
|
Technical Conference, Boston, MA
|
|
|
|
|
|
|
2009-06-05 20:37:24 -07:00
|
|
|
|
[RENDER]
|
2003-11-14 16:48:43 +00:00
|
|
|
|
Packard, Keith, "The X Rendering Extension", work in progress,
|
2009-04-01 11:48:26 -04:00
|
|
|
|
http://cgit.freedesktop.org/xorg/proto/renderproto/tree/renderproto.txt
|