Searched refs:dstwidth (Results 1 – 5 of 5) sorted by relevance
/AliOS-Things-master/components/SDL2/src/gfx/ |
A D | SDL_rotozoom.h | 85 …OOM_SCOPE void rotozoomSurfaceSize(int width, int height, double angle, double zoom, int *dstwidth, 90 int *dstwidth, int *dstheight); 100 … zoomSurfaceSize(int width, int height, double zoomx, double zoomy, int *dstwidth, int *dstheight);
|
A D | SDL_rotozoom.c | 950 int *dstwidth, int *dstheight, in _rotozoomSurfaceSizeTrig() argument 976 *dstwidth = 2 * dstwidthhalf; in _rotozoomSurfaceSizeTrig() 1057 int dstwidthhalf, dstwidth, dstheighthalf, dstheight; in rotozoomSurfaceXY() local 1145 dstwidthhalf = dstwidth / 2; in rotozoomSurfaceXY() 1366 *dstwidth = (int) floor(((double) width * zoomx) + 0.5); in zoomSurfaceSize() 1368 if (*dstwidth < 1) { in zoomSurfaceSize() 1369 *dstwidth = 1; in zoomSurfaceSize() 1396 int dstwidth, dstheight; in zoomSurface() local 1553 int dstwidth, dstheight; in shrinkSurface() local 1607 dstwidth=rz_src->w/factorx; in shrinkSurface() [all …]
|
/AliOS-Things-master/components/SDL2/src/render/software/ |
A D | SDL_rotate.h | 29 … angle, int centerx, int centery, int smooth, int flipx, int flipy, int dstwidth, int dstheight, d… 30 extern void SDLgfx_rotozoomSurfaceSizeTrig(int width, int height, double angle, int *dstwidth, int …
|
A D | SDL_rotate.c | 109 int *dstwidth, int *dstheight, in SDLgfx_rotozoomSurfaceSizeTrig() argument 118 *dstwidth = height; in SDLgfx_rotozoomSurfaceSizeTrig() 123 *dstwidth = width; in SDLgfx_rotozoomSurfaceSizeTrig() 149 *dstwidth = 2 * dstwidthhalf; in SDLgfx_rotozoomSurfaceSizeTrig() 417 … angle, int centerx, int centery, int smooth, int flipx, int flipy, int dstwidth, int dstheight, d… 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()
|
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 …ngle, dstwidth/2, dstheight/2, (texture->scaleMode == SDL_ScaleModeNearest) ? 0 : 1, flip & SDL_FL… in SW_RenderCopyEx() 456 …mask_rotated = SDLgfx_rotateSurface(mask, angle, dstwidth/2, dstheight/2, SDL_FALSE, 0, 0, dstwidt… in SW_RenderCopyEx() 494 tmp_rect.w = dstwidth; in SW_RenderCopyEx()
|
Completed in 9 milliseconds