summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2008-12-17Use RRCheckExtension in function returning a value.Adam Jackson
2008-12-17Fix type of GetReq() argument.Adam Jackson
2008-12-17Use RRSimpleCheckExtension in functions returning voidAdam Jackson
2008-12-12Bump to 1.2.99.3libXrandr-1.2.99.3Matthias Hopf
2008-12-08Add [GS]etOutputPrimaryAdam Jackson
2008-12-04Bump to 1.2.99.2.libXrandr-1.2.99.2Matthias Hopf
Note the .99
2008-12-04Nuke config-timestamp for panning.Matthias Hopf
2008-12-04Panning supportMatthias Hopf
2008-12-01Bump to 1.2.91libXrandr-1.2.91Julien Cristau
2008-12-01RRNotify subevents have 'window' at different offsets, the sequelJulien Cristau
f176b2bda103f6f38aabab8207f47a02cc797659 fixed XRRWireToEvent, but XRREventToWire had the same bug. Signed-off-by: Julien Cristau <jcristau@debian.org>
2008-12-01Merge branch 'transform-proposal' of git.freedesktop.org:/git/xorg/lib/libXrandrJulien Cristau
Conflicts: src/Xrandr.c
2008-11-28Set attr->pendingNparams in XRRGetCrtcTransform()Julien Cristau
2008-11-24Add GetScreenResourcesCurrentAdam Jackson
2008-09-12Set NparamsFilter in XRRGetCrtcTransform return value.Keith Packard
Leaving this uninitialized isn't very helpful, and can cause segfaults.
2008-08-13RRNotify subevents have 'window' at different offsets.Tomas Carnecky
2008-08-13Remove RCS tags.Adam Jackson
2008-07-02libXrandr 1.2.3libXrandr-1.2.3Adam Jackson
2008-06-23Bug #16430: Ignore ConfigureNotify on non-root windows in UpdateConfigurationthb
2008-05-19Rename parameters to clarify QueryVersion/QueryExtension.Peter Hutterer
These parameters are not treated as input. Rename them to make the inner workings slightly more obvious. X.Org Bug 14511 <http://bugs.freedesktop.org/show_bug.cgi?id=14511>
2008-03-24Bug #14388: Remove XRRScreenConfig() and XRRConfig() from Xrandr.h.Julien Cristau
It seems that they were never actually implemented. Also remove the corresponding manpage symlinks.
2008-03-18Eliminate inverse matrix from randr transform protocolKeith Packard
It is easier, and potentially more precise, to compute the inverse in the server where everything can eventually be kept in floating point form.
2008-03-15Support CRTC Transform filtersKeith Packard
XRRGetCrtcTransform now returns a giant struct containing all of the transform and filter data. XRRSetCrtcTransform now accepts filter parameters.
2008-03-10Add support for new Transform requests.Keith Packard
2008-03-09nuke RCS IdsMatthieu Herrb
2008-02-05Hide some private symbols.Julien Cristau
XExtensionInfo, XRRExtensionName, XRRFindDisplay, _XRRHasRates and _XRRVersionHandler are internal to libXrandr. Don't export them.
2007-12-06Replace static ChangeLog with dist-hook to generate from git logJames Cloos
2007-11-11Merge branch 'master' of git://git.freedesktop.org/git/xorg/lib/libXrandrJames Cloos
2007-09-05Bump version to 1.2.2.libXrandr-1.2.2Eric Anholt
2007-09-03Add *~ to .gitignore to skip patch/emacs droppingsJames Cloos
2007-07-03CrtcChange event format conversion was using 'height' for 'width'.Keith Packard
CrtcChange events were getting the source 'height' value stored in the 'width' target in both conversion directions.
2007-03-04Set version to 1.2.1 for release.libXrandr-1.2.1Keith Packard
2007-02-20Fix the use of a C++ keyword as a parameter name in Xrandr.hFredrik Höglund
2007-02-18Reset version from 1.2.0.0 to 1.2.0libXrandr-1.2.0Keith Packard
2007-02-15Must pass size information in SetCrtcGamma request.Keith Packard
2007-01-31Merge 64-bit fixes inKeith Packard
2007-01-31Fix read sizes for 64-bit machines.Keith Packard
Be consistent in variable usage: nbytes = network byte length. rbytes = memory byte length. nbytesRead = actual network bytes read. Malloc rbytes data to pass to _XRead*, but use nbytes as the amount of data to read (yes, this is insane, welcome to Xlib). Some of this patch is semi-gratuitous, but the goal is to be consistent everywhere.
2007-01-16Return a valid property info even if we lack valid value sets.Eric Anholt
Previously, XRRQueryOutputProperty90 would return an uninitialized pointer if num_values was 0.
2007-01-06Avoid nested LockDisplay calls.Keith Packard
XRRFindDisplay must make extension requests that use LockDisplay, so don't call it with the display locked, instead pass the info around to the internal functions that were calling it themselves, having acquired the info before the outer LockDisplay is called.
2006-12-30Failed to copy rotations from reply to XRRCrtcInfo.Keith Packard
XRRGetCrtcInfo was not moving the rotations value from the wire reply structure to the XRRCrtcInfo being returned, leaving the value uninitialized.
2006-12-02Merge branch 'randr-1.2'Dave Airlie
2006-11-30Add initial implementation of crtc gamma and mode adding requests.Keith Packard
They build. More testing seems indicated.
2006-11-27Merge branch 'randr-1.2'Eric Anholt
Conflicts: configure.ac
2006-11-20Change properties to have a pending value and report valid values.Keith Packard
Pending values are transferred to current values at mode set, allowing a queue of values to accrue in preparation for the modeset operation while still reporting valid 'current' values for applications. The set of valid values is also available so applications can present a reasonable list to the user during configuration.
2006-11-16Remove RandR output options.Keith Packard
Options are to be implemented as properties instead.
2006-11-09Return the right actual property type for XRRGetOutputProperty.Eric Anholt
2006-11-09Add support for various output property requests.Eric Anholt
These should be reviewed by someone with proto clue, which I'm generally lacking.
2006-11-01Moving physical size from mode to output.Keith Packard
Follows protocol change which places physical size information in the output rather than (inappropriately) in each mode line.
2006-10-13Bump to 1.1.2libXrandr-1.1.2Adam Jackson
2006-10-13Bump to 1.1.1libXrandr-1.1.1Adam Jackson
2006-10-12Do not call UnlockDisplay without calling LockDisplay.Jamey Sharp
Thanks to Magnus Kessler <Magnus.Kessler@gmx.net> for reporting this bug and a correct fix.