Searched refs:dstheight (Results 1 – 5 of 5) sorted by relevance
/AliOS-Things-master/components/SDL2/src/gfx/ |
A D | SDL_rotozoom.c | 950 int *dstwidth, int *dstheight, in _rotozoomSurfaceSizeTrig() argument 1172 rz_dst->h = dstheight; in rotozoomSurfaceXY() 1264 rz_dst->h = dstheight; in rotozoomSurfaceXY() 1371 if (*dstheight < 1) { in zoomSurfaceSize() 1372 *dstheight = 1; in zoomSurfaceSize() 1396 int dstwidth, dstheight; in zoomSurface() local 1476 rz_dst->h = dstheight; in zoomSurface() 1553 int dstwidth, dstheight; in shrinkSurface() local 1609 dstheight=rz_src->h/factory; in shrinkSurface() 1610 while (dstheight*factory>rz_src->h) { dstheight--; } in shrinkSurface() [all …]
|
A D | SDL_rotozoom.h | 86 int *dstheight); 90 int *dstwidth, int *dstheight); 100 … zoomSurfaceSize(int width, int height, double zoomx, double zoomy, int *dstwidth, int *dstheight);
|
/AliOS-Things-master/components/SDL2/src/render/software/ |
A D | SDL_rotate.h | 29 …nterx, int centery, int smooth, int flipx, int flipy, int dstwidth, int dstheight, double cangle, … 30 …urfaceSizeTrig(int width, int height, double angle, int *dstwidth, int *dstheight, double *cangle,…
|
A D | SDL_rotate.c | 109 int *dstwidth, int *dstheight, in SDLgfx_rotozoomSurfaceSizeTrig() argument 119 *dstheight = width; in SDLgfx_rotozoomSurfaceSizeTrig() 124 *dstheight = height; in SDLgfx_rotozoomSurfaceSizeTrig() 150 *dstheight = 2 * dstheighthalf; in SDLgfx_rotozoomSurfaceSizeTrig() 417 …nterx, int centery, int smooth, int flipx, int flipy, int dstwidth, int dstheight, double cangle, … in SDLgfx_rotateSurface() argument 450 rz_dst = SDL_CreateRGBSurface(0, dstwidth, dstheight + GUARD_ROWS, 8, 0, 0, 0, 0); in SDLgfx_rotateSurface() 459 rz_dst = SDL_CreateRGBSurface(0, dstwidth, dstheight + GUARD_ROWS, 32, in SDLgfx_rotateSurface() 469 rz_dst->h = dstheight; in SDLgfx_rotateSurface()
|
A D | SDL_render_sw.c | 346 int retval = 0, dstwidth, dstheight, abscenterx, abscentery; in SW_RenderCopyEx() local 449 …SDLgfx_rotozoomSurfaceSizeTrig(tmp_rect.w, tmp_rect.h, angle, &dstwidth, &dstheight, &cangle, &san… in SW_RenderCopyEx() 450 …th/2, dstheight/2, (texture->scaleMode == SDL_ScaleModeNearest) ? 0 : 1, flip & SDL_FLIP_HORIZONTA… in SW_RenderCopyEx() 456 …ted = SDLgfx_rotateSurface(mask, angle, dstwidth/2, dstheight/2, SDL_FALSE, 0, 0, dstwidth, dsthei… in SW_RenderCopyEx() 495 tmp_rect.h = dstheight; in SW_RenderCopyEx()
|
Completed in 9 milliseconds