mirror of
https://github.com/X11Libre/xserver.git
synced 2026-09-25 21:02:21 +00:00
Merge branch 'master' into mpx
Conflicts: dix/devices.c dix/events.c mi/misprite.c
This commit is contained in:
commit
015d728bcd
100 changed files with 3059 additions and 1720 deletions
|
|
@ -490,7 +490,7 @@ RRCrtcInit (void)
|
|||
int
|
||||
ProcRRGetCrtcInfo (ClientPtr client)
|
||||
{
|
||||
REQUEST(xRRGetCrtcInfoReq);;
|
||||
REQUEST(xRRGetCrtcInfoReq);
|
||||
xRRGetCrtcInfoReply rep;
|
||||
RRCrtcPtr crtc;
|
||||
CARD8 *extra;
|
||||
|
|
|
|||
|
|
@ -22,6 +22,9 @@
|
|||
|
||||
#include "randrstr.h"
|
||||
|
||||
#define SERVER_RANDR_MAJOR 1
|
||||
#define SERVER_RANDR_MINOR 2
|
||||
|
||||
Bool
|
||||
RRClientKnowsRates (ClientPtr pClient)
|
||||
{
|
||||
|
|
@ -49,8 +52,8 @@ ProcRRQueryVersion (ClientPtr client)
|
|||
* Report the current version; the current
|
||||
* spec says they're all compatible after 1.0
|
||||
*/
|
||||
rep.majorVersion = RANDR_MAJOR;
|
||||
rep.minorVersion = RANDR_MINOR;
|
||||
rep.majorVersion = SERVER_RANDR_MAJOR;
|
||||
rep.minorVersion = SERVER_RANDR_MINOR;
|
||||
if (client->swapped) {
|
||||
swaps(&rep.sequenceNumber, n);
|
||||
swapl(&rep.length, n);
|
||||
|
|
|
|||
|
|
@ -366,7 +366,7 @@ RROutputInit (void)
|
|||
int
|
||||
ProcRRGetOutputInfo (ClientPtr client)
|
||||
{
|
||||
REQUEST(xRRGetOutputInfoReq);;
|
||||
REQUEST(xRRGetOutputInfoReq);
|
||||
xRRGetOutputInfoReply rep;
|
||||
RROutputPtr output;
|
||||
CARD8 *extra;
|
||||
|
|
|
|||
|
|
@ -104,7 +104,7 @@ void
|
|||
RRPointerMoved (ScreenPtr pScreen, int x, int y)
|
||||
{
|
||||
rrScrPriv (pScreen);
|
||||
RRCrtcPtr pointerCrtc = pScrPriv->pointerCrtc;;
|
||||
RRCrtcPtr pointerCrtc = pScrPriv->pointerCrtc;
|
||||
int c;
|
||||
|
||||
/* Check last known CRTC */
|
||||
|
|
|
|||
Loading…
Reference in a new issue