Mercurial > sdl-ios-xcode
comparison src/video/x11/SDL_x11video.h @ 4264:d6f4cc9a5bf6 SDL-1.2
Batch x11 dga mouse motion events into a single SDL event.
Untested attempt to fix Bugzilla #609. Do not merge into 1.3 in any case.
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Tue, 29 Sep 2009 11:28:43 +0000 |
parents | a1b03ba2fcd0 |
children | 60db3d01cb3a |
comparison
equal
deleted
inserted
replaced
4263:3c12d2e84bcb | 4264:d6f4cc9a5bf6 |
---|---|
68 | 68 |
69 char *SDL_windowid; /* Flag: true if we have been passed a window */ | 69 char *SDL_windowid; /* Flag: true if we have been passed a window */ |
70 | 70 |
71 /* Direct Graphics Access extension information */ | 71 /* Direct Graphics Access extension information */ |
72 int using_dga; | 72 int using_dga; |
73 Sint16 dga_x; | |
74 Sint16 dga_y; | |
73 | 75 |
74 #ifndef NO_SHARED_MEMORY | 76 #ifndef NO_SHARED_MEMORY |
75 /* MIT shared memory extension information */ | 77 /* MIT shared memory extension information */ |
76 int use_mitshm; | 78 int use_mitshm; |
77 XShmSegmentInfo shminfo; | 79 XShmSegmentInfo shminfo; |
170 #define SDL_BlankCursor (this->hidden->BlankCursor) | 172 #define SDL_BlankCursor (this->hidden->BlankCursor) |
171 #define SDL_IM (this->hidden->X11_IM) | 173 #define SDL_IM (this->hidden->X11_IM) |
172 #define SDL_IC (this->hidden->X11_IC) | 174 #define SDL_IC (this->hidden->X11_IC) |
173 #define SDL_windowid (this->hidden->SDL_windowid) | 175 #define SDL_windowid (this->hidden->SDL_windowid) |
174 #define using_dga (this->hidden->using_dga) | 176 #define using_dga (this->hidden->using_dga) |
177 #define dga_x (this->hidden->dga_x) | |
178 #define dga_y (this->hidden->dga_y) | |
175 #define use_mitshm (this->hidden->use_mitshm) | 179 #define use_mitshm (this->hidden->use_mitshm) |
176 #define shminfo (this->hidden->shminfo) | 180 #define shminfo (this->hidden->shminfo) |
177 #define SDL_Ximage (this->hidden->Ximage) | 181 #define SDL_Ximage (this->hidden->Ximage) |
178 #define SDL_GC (this->hidden->gc) | 182 #define SDL_GC (this->hidden->gc) |
179 #define window_w (this->hidden->window_w) | 183 #define window_w (this->hidden->window_w) |