Home | History | Annotate | Download | only in ps2gs

Lines Matching refs:area

55 	SDL_Rect area;
69 /* Remove the cursor image from the DMA area */
80 /* Save the current mouse area */
81 SDL_MouseRect(&area);
82 mouse_y1 = area.y;
83 mouse_y2 = area.y+area.h;
88 cursor->area.x = (x - cursor->hot_x);
89 cursor->area.y = (y - cursor->hot_y);
100 /* Update the affected area of the screen */
102 SDL_MouseRect(&area);
103 if ( area.y < mouse_y1 ) {
104 mouse_y1 = area.y;
106 if ( (area.y+area.h) > mouse_y2 ) {
107 mouse_y2 = area.y+area.h;