summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2018-03-01Deprecate presentprotoHEADmasterAdam Jackson3-47/+4
Signed-off-by: Adam Jackson <ajax@redhat.com>
2017-01-26Bump version to 1.1presentproto-1.1Julien Cristau1-1/+1
2017-01-26autogen: add default patch prefixMihail Konev1-0/+3
Signed-off-by: Mihail Konev <k.mvc@ya.ru>
2017-01-24autogen.sh: use quoted string variablesEmil Velikov1-4/+4
Place quotes around the $srcdir, $ORIGDIR and $0 variables to prevent fall-outs, when they contain space. Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com> Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net> Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2017-01-24autogen.sh: use exec instead of waiting for configure to finishPeter Hutterer1-1/+1
Syncs the invocation of configure with the one from the server. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2016-07-28Fix typo (modifiy -> modify)Kenneth Graunke1-1/+1
2014-06-04configure: Drop AM_MAINTAINER_MODEAlan Coopersmith1-1/+0
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2014-01-02autogen.sh: Implement GNOME Build APIKeith Packard1-1/+3
http://people.gnome.org/~walters/docs/build-api.txt Signed-off-by: Keith Packard <keithp@keithp.com>
2013-12-13Don't define 'redirect' stuff in header filesKeith Packard2-1/+13
Leave it all under #if PRESENT_FUTURE_VERSION for documentation Signed-off-by: Keith Packard <keithp@keithp.com>
2013-12-13Move Redirect stuff to 'later version' sectionsKeith Packard1-14/+56
This makes it clear that the Redirect event bits are not part of the 1.0 standard. Signed-off-by: Keith Packard <keithp@keithp.com>
2013-12-13Force Window and Pixmap to be CARD32 on the wireAdam Jackson1-0/+4
If you don't do this then the client libs on 64-bit machines see them as XIDs, which are 64-bit wide (sigh), which ruins the wire encoding and nothing works. Reviewed-by: Jasper St. Pierre <jstpierre@mecheye.net> Signed-off-by: Adam Jackson <ajax@redhat.com>
2013-12-13Fix spelling of James Jones' email addressKeith Packard1-1/+1
Signed-off-by: Keith Packard <keithp@keithp.com>
2013-11-24Fix wrong reference to DRI3 in the protocol specJulien Cristau1-1/+1
Signed-off-by: Julien Cristau <jcristau@debian.org>
2013-11-13config: replace deprecated use of AC_OUTPUT with AC_CONFIG_FILESGaetan Nadon1-1/+2
Fix Automake warning: AC_OUTPUT should be used without arguments. www.gnu.org/software/autoconf/manual/autoconf.html#Configuration-Files Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2013-11-13Add the required README file.Gaetan Nadon1-0/+32
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2013-11-06Add COPYINGAdam Jackson1-0/+19
Text taken from the header files. Signed-off-by: Adam Jackson <ajax@redhat.com>
2013-11-01Copy the standard .gitignore from other proto packagesAaron Plattner1-3/+69
Signed-off-by: Aaron Plattner <aplattner@nvidia.com> Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
2013-10-31Update to version 1.0presentproto-1.0Keith Packard3-11/+231
Add presentproto.h updates for current protocol. Finish encoding specification. Signed-off-by: Keith Packard <keithp@keithp.com>
2013-10-29Clarify when pixmaps are assured of being idleKeith Packard1-5/+5
Pixmaps will definitely be idle after the next PresentPixmap operation completes; the original text was vague about whether it was the execution of the request or the completion of the operation. Signed-off-by: Keith Packard <keithp@keithp.com>
2013-10-19Clarify role and responsibility for client and server regarding fencesKeith Packard1-2/+13
Signed-off-by: Keith Packard <keithp@keithp.com>
2013-10-19Add .gitignoreKeith Packard1-0/+12
Signed-off-by: Keith Packard <keithp@keithp.com>
2013-10-18PresentRegion->PresentPixmap, define options, add UST modeKeith Packard3-31/+191
Changes the name of the PresentPixmap request from PresentRegion in anticipation of future additions of non-pixmap sourced updates (YUV images in particular). Adds definitions for all of the new PresentPixmap options. Adds PresentQueryCapabilities to provide applications the ability to learn what the underlying hardware can support. One requirement for any capability is that the X server must do something sensible even if the client behaves as if a capability is supported when it is not. Adds IdleNotify events. As pixmaps can go idle in any order, it's important for applications to know which pixmap to use next. We cannot use fences as the fence itself may not be signaled for some time after the X server has figured out which pixmap to idle. Note that the encoding and header files are not entirely up to date now. Signed-off-by: Keith Packard <keithp@keithp.com>
2013-07-24Start reworking for present redirection.Keith Packard2-10/+36
In PresentRegion, add the PresentNotify list, add explicit CRTC. In PresentRedirectNotify, add CRTC and update_window values Signed-off-by: Keith Packard <keithp@keithp.com>
2013-07-15Remove SBC, use CompleteNotify for both Region and NotifyMSCKeith Packard3-39/+40
SBC is entire a client-side notion, so remove it from the protocol. No need to have two events with the same content, but we do need to tell which request generated the event so stick a new field in some spare bytes Signed-off-by: Keith Packard <keithp@keithp.com>
2013-07-13Add NotifyMSC. Add serial numbers to Complete and MSC eventsKeith Packard3-24/+123
Signed-off-by: Keith Packard <keithp@keithp.com>
2013-07-12Document how target-msc, divisor and remainder workKeith Packard1-0/+5
Signed-off-by: Keith Packard <keithp@keithp.com>
2013-07-11Initial Present protocol specificationKeith Packard7-0/+609
Signed-off-by: Keith Packard <keithp@keithp.com>