Home
last modified time | relevance | path

Searched refs:Amax (Results 1 – 1 of 1) sorted by relevance

/external/qemu/distrib/sdl-1.2.12/src/video/
DSDL_surface.c337 int Amin, Amax, Bmin, Bmax; in SDL_IntersectRect() local
341 Amax = Amin + A->w; in SDL_IntersectRect()
347 if(Bmax < Amax) in SDL_IntersectRect()
348 Amax = Bmax; in SDL_IntersectRect()
349 intersection->w = Amax - Amin > 0 ? Amax - Amin : 0; in SDL_IntersectRect()
353 Amax = Amin + A->h; in SDL_IntersectRect()
359 if(Bmax < Amax) in SDL_IntersectRect()
360 Amax = Bmax; in SDL_IntersectRect()
361 intersection->h = Amax - Amin > 0 ? Amax - Amin : 0; in SDL_IntersectRect()