comparison src/video/x11/SDL_x11video.h @ 4269:60db3d01cb3a SDL-1.2

I just tested DGA mouse motion with X.org 1.6.0 and it's working fine, with evdev and the G5 mouse. It's not creating a ton of events here.
author Sam Lantinga <slouken@libsdl.org>
date Wed, 30 Sep 2009 04:49:57 +0000
parents d6f4cc9a5bf6
children
comparison
equal deleted inserted replaced
4268:d48035d857d3 4269:60db3d01cb3a
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;
75 73
76 #ifndef NO_SHARED_MEMORY 74 #ifndef NO_SHARED_MEMORY
77 /* MIT shared memory extension information */ 75 /* MIT shared memory extension information */
78 int use_mitshm; 76 int use_mitshm;
79 XShmSegmentInfo shminfo; 77 XShmSegmentInfo shminfo;
172 #define SDL_BlankCursor (this->hidden->BlankCursor) 170 #define SDL_BlankCursor (this->hidden->BlankCursor)
173 #define SDL_IM (this->hidden->X11_IM) 171 #define SDL_IM (this->hidden->X11_IM)
174 #define SDL_IC (this->hidden->X11_IC) 172 #define SDL_IC (this->hidden->X11_IC)
175 #define SDL_windowid (this->hidden->SDL_windowid) 173 #define SDL_windowid (this->hidden->SDL_windowid)
176 #define using_dga (this->hidden->using_dga) 174 #define using_dga (this->hidden->using_dga)
177 #define dga_x (this->hidden->dga_x)
178 #define dga_y (this->hidden->dga_y)
179 #define use_mitshm (this->hidden->use_mitshm) 175 #define use_mitshm (this->hidden->use_mitshm)
180 #define shminfo (this->hidden->shminfo) 176 #define shminfo (this->hidden->shminfo)
181 #define SDL_Ximage (this->hidden->Ximage) 177 #define SDL_Ximage (this->hidden->Ximage)
182 #define SDL_GC (this->hidden->gc) 178 #define SDL_GC (this->hidden->gc)
183 #define window_w (this->hidden->window_w) 179 #define window_w (this->hidden->window_w)