/AliOS-Things-master/components/SDL2/include/ |
A D | SDL_surface.h | 70 typedef struct SDL_Surface struct 93 } SDL_Surface; argument 384 extern DECLSPEC SDL_Surface *SDLCALL SDL_DuplicateSurface(SDL_Surface * surface); 491 (SDL_Surface * src, const SDL_Rect * srcrect, 492 SDL_Surface * dst, SDL_Rect * dstrect); 499 (SDL_Surface * src, SDL_Rect * srcrect, 500 SDL_Surface * dst, SDL_Rect * dstrect); 520 (SDL_Surface * src, const SDL_Rect * srcrect, 521 SDL_Surface * dst, SDL_Rect * dstrect); 528 (SDL_Surface * src, SDL_Rect * srcrect, [all …]
|
A D | SDL_test_images.h | 58 SDL_Surface *SDLTest_ImageBlit(void); 59 SDL_Surface *SDLTest_ImageBlitColor(void); 60 SDL_Surface *SDLTest_ImageBlitAlpha(void); 61 SDL_Surface *SDLTest_ImageBlitBlendAdd(void); 62 SDL_Surface *SDLTest_ImageBlitBlend(void); 63 SDL_Surface *SDLTest_ImageBlitBlendMod(void); 64 SDL_Surface *SDLTest_ImageBlitBlendNone(void); 65 SDL_Surface *SDLTest_ImageBlitBlendAll(void); 66 SDL_Surface *SDLTest_ImageFace(void); 67 SDL_Surface *SDLTest_ImagePrimitives(void); [all …]
|
A D | SDL_ttf.h | 181 extern DECLSPEC SDL_Surface * SDLCALL TTF_RenderText_Solid(TTF_Font *font, 183 extern DECLSPEC SDL_Surface * SDLCALL TTF_RenderUTF8_Solid(TTF_Font *font, 185 extern DECLSPEC SDL_Surface * SDLCALL TTF_RenderUNICODE_Solid(TTF_Font *font, 195 extern DECLSPEC SDL_Surface * SDLCALL TTF_RenderGlyph_Solid(TTF_Font *font, 203 extern DECLSPEC SDL_Surface * SDLCALL TTF_RenderText_Shaded(TTF_Font *font, 205 extern DECLSPEC SDL_Surface * SDLCALL TTF_RenderUTF8_Shaded(TTF_Font *font, 207 extern DECLSPEC SDL_Surface * SDLCALL TTF_RenderUNICODE_Shaded(TTF_Font *font, 217 extern DECLSPEC SDL_Surface * SDLCALL TTF_RenderGlyph_Shaded(TTF_Font *font, 224 extern DECLSPEC SDL_Surface * SDLCALL TTF_RenderText_Blended(TTF_Font *font, 226 extern DECLSPEC SDL_Surface * SDLCALL TTF_RenderUTF8_Blended(TTF_Font *font, [all …]
|
/AliOS-Things-master/components/SDL2/src/gfx/ |
A D | SDL_gfxPrimitives.h | 87 SDL_GFXPRIMITIVES_SCOPE int rectangleRGBA(SDL_Surface * dst, Sint16 x1, Sint16 y1, 111 SDL_GFXPRIMITIVES_SCOPE int lineRGBA(SDL_Surface * dst, Sint16 x1, Sint16 y1, 117 SDL_GFXPRIMITIVES_SCOPE int aalineRGBA(SDL_Surface * dst, Sint16 x1, Sint16 y1, 140 SDL_GFXPRIMITIVES_SCOPE int aacircleRGBA(SDL_Surface * dst, Sint16 x, Sint16 y, 146 SDL_GFXPRIMITIVES_SCOPE int filledCircleRGBA(SDL_Surface * dst, Sint16 x, Sint16 y, 152 SDL_GFXPRIMITIVES_SCOPE int ellipseRGBA(SDL_Surface * dst, Sint16 x, Sint16 y, 158 SDL_GFXPRIMITIVES_SCOPE int aaellipseRGBA(SDL_Surface * dst, Sint16 x, Sint16 y, 164 SDL_GFXPRIMITIVES_SCOPE int filledEllipseRGBA(SDL_Surface * dst, Sint16 x, Sint16 y, 214 SDL_GFXPRIMITIVES_SCOPE int filledPolygonRGBA(SDL_Surface * dst, const Sint16 * vx, 216 …FXPRIMITIVES_SCOPE int texturedPolygon(SDL_Surface * dst, const Sint16 * vx, const Sint16 * vy, in… [all …]
|
A D | SDL_rotozoom.h | 79 …SDL_ROTOZOOM_SCOPE SDL_Surface *rotozoomSurface(SDL_Surface * src, double angle, double zoom, int … 81 SDL_ROTOZOOM_SCOPE SDL_Surface *rotozoomSurfaceXY 82 (SDL_Surface * src, double angle, double zoomx, double zoomy, int smooth); 98 …SDL_ROTOZOOM_SCOPE SDL_Surface *zoomSurface(SDL_Surface * src, double zoomx, double zoomy, int smo… 108 SDL_ROTOZOOM_SCOPE SDL_Surface *shrinkSurface(SDL_Surface * src, int factorx, int factory); 116 SDL_ROTOZOOM_SCOPE SDL_Surface* rotateSurface90Degrees(SDL_Surface* src, int numClockwiseTurns);
|
A D | SDL_rotozoom.c | 113 int _shrinkSurfaceRGBA(SDL_Surface * src, SDL_Surface * dst, int factorx, int factory) in _shrinkSurfaceRGBA() 202 int _shrinkSurfaceY(SDL_Surface * src, SDL_Surface * dst, int factorx, int factory) in _shrinkSurfaceY() 519 int _zoomSurfaceY(SDL_Surface * src, SDL_Surface * dst, int flipx, int flipy) in _zoomSurfaceY() 814 SDL_Surface* rotateSurface90Degrees(SDL_Surface* src, int numClockwiseTurns) in rotateSurface90Degrees() 818 SDL_Surface* dst; in rotateSurface90Degrees() 1053 SDL_Surface *rz_src; in rotozoomSurfaceXY() 1054 SDL_Surface *rz_dst; in rotozoomSurfaceXY() 1394 SDL_Surface *rz_src; in zoomSurface() 1395 SDL_Surface *rz_dst; in zoomSurface() 1548 SDL_Surface *shrinkSurface(SDL_Surface *src, int factorx, int factory) in shrinkSurface() [all …]
|
/AliOS-Things-master/components/SDL2/src/image/ |
A D | SDL_image.h | 97 extern DECLSPEC SDL_Surface * SDLCALL IMG_Load(const char *file); 126 extern DECLSPEC SDL_Surface * SDLCALL IMG_LoadICO_RW(SDL_RWops *src); 127 extern DECLSPEC SDL_Surface * SDLCALL IMG_LoadCUR_RW(SDL_RWops *src); 128 extern DECLSPEC SDL_Surface * SDLCALL IMG_LoadBMP_RW(SDL_RWops *src); 129 extern DECLSPEC SDL_Surface * SDLCALL IMG_LoadGIF_RW(SDL_RWops *src); 130 extern DECLSPEC SDL_Surface * SDLCALL IMG_LoadJPG_RW(SDL_RWops *src); 131 extern DECLSPEC SDL_Surface * SDLCALL IMG_LoadLBM_RW(SDL_RWops *src); 132 extern DECLSPEC SDL_Surface * SDLCALL IMG_LoadPCX_RW(SDL_RWops *src); 133 extern DECLSPEC SDL_Surface * SDLCALL IMG_LoadPNG_RW(SDL_RWops *src); 134 extern DECLSPEC SDL_Surface * SDLCALL IMG_LoadPNM_RW(SDL_RWops *src); [all …]
|
A D | IMG.c | 36 SDL_Surface *(SDLCALL *load)(SDL_RWops *src); 129 SDL_Surface *IMG_Load(const char *file) in IMG_Load() 134 SDL_Surface *surf; in IMG_Load() 161 SDL_Surface *IMG_Load_RW(SDL_RWops *src, int freesrc) in IMG_Load_RW() 180 SDL_Surface *IMG_LoadTyped_RW(SDL_RWops *src, int freesrc, const char *type) in IMG_LoadTyped_RW() 183 SDL_Surface *image; in IMG_LoadTyped_RW() 205 SDL_Surface *surf; in IMG_LoadTyped_RW() 261 SDL_Surface *surface = IMG_Load(file); in IMG_LoadTexture() 272 SDL_Surface *surface = IMG_Load_RW(src, freesrc); in IMG_LoadTexture_RW() 283 SDL_Surface *surface = IMG_LoadTyped_RW(src, freesrc, type); in IMG_LoadTextureTyped_RW()
|
A D | IMG_UIImage.m | 33 SDL_Surface* surface; 114 SDL_Surface* sdl_surface; 147 SDL_Surface* sdl_surface = NULL; 168 SDL_Surface *IMG_Load(const char *file) 170 SDL_Surface* sdl_surface = NULL; 407 SDL_Surface* IMG_LoadCUR_RW(SDL_RWops *src) 412 SDL_Surface* IMG_LoadICO_RW(SDL_RWops *src) 416 SDL_Surface* IMG_LoadBMP_RW(SDL_RWops *src) 420 SDL_Surface* IMG_LoadGIF_RW(SDL_RWops *src) 424 SDL_Surface* IMG_LoadJPG_RW(SDL_RWops *src) [all …]
|
A D | IMG_xxx.c | 46 SDL_Surface *IMG_LoadXXX_RW(SDL_RWops *src) in IMG_LoadXXX_RW() 50 SDL_Surface *surface = NULL; in IMG_LoadXXX_RW() 80 SDL_Surface *IMG_LoadXXX_RW(SDL_RWops *src) in IMG_LoadXXX_RW()
|
A D | IMG_ImageIO.m | 206 SDL_Surface* surface; 290 SDL_Surface* surface; 614 SDL_Surface *sdl_surface = NULL; 676 SDL_Surface *sdl_surface = NULL; 723 SDL_Surface* IMG_LoadCUR_RW (SDL_RWops *src) 729 SDL_Surface* IMG_LoadICO_RW (SDL_RWops *src) 734 SDL_Surface* IMG_LoadBMP_RW (SDL_RWops *src) 741 SDL_Surface* IMG_LoadGIF_RW (SDL_RWops *src) 746 SDL_Surface* IMG_LoadJPG_RW (SDL_RWops *src) 769 SDL_Surface* IMG_Load (const char *file) [all …]
|
/AliOS-Things-master/components/SDL2/src/test/ |
A D | SDL_test_imageBlitBlend.c | 581 SDL_Surface *SDLTest_ImageBlitBlendAdd() in SDLTest_ImageBlitBlendAdd() 583 SDL_Surface *surface = SDL_CreateRGBSurfaceFrom( in SDLTest_ImageBlitBlendAdd() 1111 SDL_Surface *SDLTest_ImageBlitBlend() in SDLTest_ImageBlitBlend() 1113 SDL_Surface *surface = SDL_CreateRGBSurfaceFrom( in SDLTest_ImageBlitBlend() 1541 SDL_Surface *SDLTest_ImageBlitBlendMod() in SDLTest_ImageBlitBlendMod() 1543 SDL_Surface *surface = SDL_CreateRGBSurfaceFrom( in SDLTest_ImageBlitBlendMod() 2354 SDL_Surface *SDLTest_ImageBlitBlendNone() in SDLTest_ImageBlitBlendNone() 2356 SDL_Surface *surface = SDL_CreateRGBSurfaceFrom( in SDLTest_ImageBlitBlendNone() 2822 SDL_Surface *SDLTest_ImageBlitBlendAll() in SDLTest_ImageBlitBlendAll() 2824 SDL_Surface *surface = SDL_CreateRGBSurfaceFrom( in SDLTest_ImageBlitBlendAll()
|
A D | SDL_test_imageBlit.c | 541 SDL_Surface *SDLTest_ImageBlit() in SDLTest_ImageBlit() 543 SDL_Surface *surface = SDL_CreateRGBSurfaceFrom( in SDLTest_ImageBlit() 1024 SDL_Surface *SDLTest_ImageBlitColor() in SDLTest_ImageBlitColor() 1026 SDL_Surface *surface = SDL_CreateRGBSurfaceFrom( in SDLTest_ImageBlitColor() 1536 SDL_Surface *SDLTest_ImageBlitAlpha() in SDLTest_ImageBlitAlpha() 1538 SDL_Surface *surface = SDL_CreateRGBSurfaceFrom( in SDLTest_ImageBlitAlpha()
|
/AliOS-Things-master/components/SDL2/src/video/alios/ |
A D | SDL_AliOS_framebuffer.c | 37 SDL_Surface *surface; in SDL_AliOS_CreateWindowFramebuffer() 44 surface = (SDL_Surface *) SDL_GetWindowData(window, ALIOS_SURFACE); in SDL_AliOS_CreateWindowFramebuffer() 66 SDL_Surface *surface; in SDL_AliOS_UpdateWindowFramebuffer() 68 surface = (SDL_Surface *) SDL_GetWindowData(window, ALIOS_SURFACE); in SDL_AliOS_UpdateWindowFramebuffer() 84 SDL_Surface *surface; in SDL_AliOS_DestroyWindowFramebuffer() 86 surface = (SDL_Surface *) SDL_SetWindowData(window, ALIOS_SURFACE, NULL); in SDL_AliOS_DestroyWindowFramebuffer()
|
A D | SDL_AliOS_mouse.c | 36 static SDL_Cursor *AliOS_CreateCursor(SDL_Surface * surface, 50 AliOS_CreateCursor(SDL_Surface * surface, int hot_x, int hot_y) in AliOS_CreateCursor() 69 AliOS_CreateSystemCursor(SDL_Surface * surface, int hot_x, int hot_y) in AliOS_CreateSystemCursor() 81 SDL_Surface *surface; in AliOS_ShowCursor() 90 SDL_Surface *w_surface; in AliOS_ShowCursor()
|
/AliOS-Things-master/components/SDL2/src/video/dummy/ |
A D | SDL_nullframebuffer.c | 33 SDL_Surface *surface; in SDL_DUMMY_CreateWindowFramebuffer() 40 surface = (SDL_Surface *) SDL_GetWindowData(window, DUMMY_SURFACE); in SDL_DUMMY_CreateWindowFramebuffer() 62 SDL_Surface *surface; in SDL_DUMMY_UpdateWindowFramebuffer() 64 surface = (SDL_Surface *) SDL_GetWindowData(window, DUMMY_SURFACE); in SDL_DUMMY_UpdateWindowFramebuffer() 81 SDL_Surface *surface; in SDL_DUMMY_DestroyWindowFramebuffer() 83 surface = (SDL_Surface *) SDL_SetWindowData(window, DUMMY_SURFACE, NULL); in SDL_DUMMY_DestroyWindowFramebuffer()
|
/AliOS-Things-master/components/SDL2/src/video/offscreen/ |
A D | SDL_offscreenframebuffer.c | 34 SDL_Surface *surface; in SDL_OFFSCREEN_CreateWindowFramebuffer() 41 surface = (SDL_Surface *) SDL_GetWindowData(window, OFFSCREEN_SURFACE); in SDL_OFFSCREEN_CreateWindowFramebuffer() 63 SDL_Surface *surface; in SDL_OFFSCREEN_UpdateWindowFramebuffer() 65 surface = (SDL_Surface *) SDL_GetWindowData(window, OFFSCREEN_SURFACE); in SDL_OFFSCREEN_UpdateWindowFramebuffer() 82 SDL_Surface *surface; in SDL_OFFSCREEN_DestroyWindowFramebuffer() 84 surface = (SDL_Surface *) SDL_SetWindowData(window, OFFSCREEN_SURFACE, NULL); in SDL_OFFSCREEN_DestroyWindowFramebuffer()
|
/AliOS-Things-master/components/SDL2/src/video/ |
A D | SDL_surface.c | 58 SDL_Surface * 63 SDL_Surface *surface; in SDL_CreateRGBSurfaceWithFormat() 154 SDL_Surface * 174 SDL_Surface * 180 SDL_Surface *surface; in SDL_CreateRGBSurfaceFrom() 198 SDL_Surface * 203 SDL_Surface *surface; in SDL_CreateRGBSurfaceWithFormatFrom() 955 SDL_Surface * 964 SDL_Surface * 968 SDL_Surface *convert; in SDL_ConvertSurface() [all …]
|
/AliOS-Things-master/components/SDL2/test/ |
A D | testautomation_surface.c | 102 SDL_Surface *face; in _testBlitBlendMode() 224 SDL_Surface *face; in surface_testSaveLoadBitmap() 225 SDL_Surface *rface; in surface_testSaveLoadBitmap() 413 SDL_Surface *compareSurface; in surface_testBlit() 436 SDL_Surface *compareSurface; in surface_testBlitColorMod() 459 SDL_Surface *compareSurface; in surface_testBlitAlphaMod() 483 SDL_Surface *compareSurface; in surface_testBlitBlendNone() 506 SDL_Surface *compareSurface; in surface_testBlitBlendBlend() 529 SDL_Surface *compareSurface; in surface_testBlitBlendAdd() 552 SDL_Surface *compareSurface; in surface_testBlitBlendMod() [all …]
|
/AliOS-Things-master/components/SDL2/src/render/software/ |
A D | SDL_blendfillrect.c | 30 SDL_BlendFillRect_RGB555(SDL_Surface * dst, const SDL_Rect * rect, in SDL_BlendFillRect_RGB555() 56 SDL_BlendFillRect_RGB565(SDL_Surface * dst, const SDL_Rect * rect, in SDL_BlendFillRect_RGB565() 82 SDL_BlendFillRect_RGB888(SDL_Surface * dst, const SDL_Rect * rect, in SDL_BlendFillRect_RGB888() 108 SDL_BlendFillRect_ARGB8888(SDL_Surface * dst, const SDL_Rect * rect, in SDL_BlendFillRect_ARGB8888() 134 SDL_BlendFillRect_RGB(SDL_Surface * dst, const SDL_Rect * rect, in SDL_BlendFillRect_RGB() 185 SDL_BlendFillRect_RGBA(SDL_Surface * dst, const SDL_Rect * rect, in SDL_BlendFillRect_RGBA() 217 SDL_BlendFillRect(SDL_Surface * dst, const SDL_Rect * rect, in SDL_BlendFillRect() 284 SDL_BlendFillRects(SDL_Surface * dst, const SDL_Rect * rects, int count, in SDL_BlendFillRects() 289 int (*func)(SDL_Surface * dst, const SDL_Rect * rect, in SDL_BlendFillRects()
|
A D | SDL_blendpoint.c | 30 SDL_BlendPoint_RGB555(SDL_Surface * dst, int x, int y, SDL_BlendMode blendMode, Uint8 r, in SDL_BlendPoint_RGB555() 56 SDL_BlendPoint_RGB565(SDL_Surface * dst, int x, int y, SDL_BlendMode blendMode, Uint8 r, in SDL_BlendPoint_RGB565() 82 SDL_BlendPoint_RGB888(SDL_Surface * dst, int x, int y, SDL_BlendMode blendMode, Uint8 r, in SDL_BlendPoint_RGB888() 108 SDL_BlendPoint_ARGB8888(SDL_Surface * dst, int x, int y, SDL_BlendMode blendMode, in SDL_BlendPoint_ARGB8888() 134 SDL_BlendPoint_RGB(SDL_Surface * dst, int x, int y, SDL_BlendMode blendMode, Uint8 r, in SDL_BlendPoint_RGB() 185 SDL_BlendPoint_RGBA(SDL_Surface * dst, int x, int y, SDL_BlendMode blendMode, Uint8 r, in SDL_BlendPoint_RGBA() 217 SDL_BlendPoint(SDL_Surface * dst, int x, int y, SDL_BlendMode blendMode, Uint8 r, in SDL_BlendPoint() 278 SDL_BlendPoints(SDL_Surface * dst, const SDL_Point * points, int count, in SDL_BlendPoints() 285 int (*func)(SDL_Surface * dst, int x, int y, in SDL_BlendPoints()
|
A D | SDL_render_sw.c | 49 SDL_Surface *surface; 50 SDL_Surface *window; 54 static SDL_Surface * 142 SDL_Surface *surface = (SDL_Surface *) texture->driverdata; in SW_UpdateTexture() 168 SDL_Surface *surface = (SDL_Surface *) texture->driverdata; in SW_LockTexture() 342 SDL_Surface *src = (SDL_Surface *) texture->driverdata; in SW_RenderCopyEx() 345 SDL_Surface *mask = NULL, *mask_rotated = NULL; in SW_RenderCopyEx() 573 SDL_Surface *surface = (SDL_Surface *) texture->driverdata; in PrepTextureForCopy() 711 SDL_Surface *src = (SDL_Surface *) texture->driverdata; in SW_RunCommandQueue() 792 SDL_Surface *surface = (SDL_Surface *) texture->driverdata; in SW_DestroyTexture() [all …]
|
A D | SDL_rotate.c | 85 _colorkey(SDL_Surface *src) in _colorkey() 156 computeSourceIncrements90(SDL_Surface * src, int bpp, int angle, int flipx, int flipy, in computeSourceIncrements90() 199 transformSurfaceRGBA90(SDL_Surface * src, SDL_Surface * dst, int angle, int flipx, int flipy) in transformSurfaceRGBA90() 205 transformSurfaceY90(SDL_Surface * src, SDL_Surface * dst, int angle, int flipx, int flipy) in transformSurfaceY90() 232 _transformSurfaceRGBA(SDL_Surface * src, SDL_Surface * dst, int cx, int cy, int isin, int icos, int… in _transformSurfaceRGBA() 346 transformSurfaceY(SDL_Surface * src, SDL_Surface * dst, int cx, int cy, int isin, int icos, int fli… in transformSurfaceY() 416 SDL_Surface * 417 SDLgfx_rotateSurface(SDL_Surface * src, double angle, int centerx, int centery, int smooth, int fli… in SDLgfx_rotateSurface() 419 SDL_Surface *rz_dst; in SDLgfx_rotateSurface()
|
/AliOS-Things-master/components/SDL2/src/gfx/Test/ |
A D | TestShrink.c | 37 void ClearScreen(SDL_Surface *screen) in ClearScreen() 54 void ShrinkPicture (SDL_Surface *screen, SDL_Surface *picture) in ShrinkPicture() 56 SDL_Surface *shrink_picture; in ShrinkPicture() 90 void Draw (SDL_Surface *screen, int start) in Draw() 92 SDL_Surface *picture, *picture_again; in Draw() 257 SDL_Surface *screen; in main()
|
A D | TestRotozoom.c | 90 SDL_Surface *rotozoom_picture; in RotatePicture() 225 void ZoomPicture (SDL_Surface *screen, SDL_Surface *picture, int smooth) in ZoomPicture() 227 SDL_Surface *rotozoom_picture; in ZoomPicture() 273 void RotatePicture90Degrees (SDL_Surface *screen, SDL_Surface *picture) in RotatePicture90Degrees() 275 SDL_Surface *rotozoom_picture; in RotatePicture90Degrees() 329 SDL_Surface *rotozoom_picture; in CustomTest() 363 SDL_Surface* testx1; in AccuracyTest1() 364 SDL_Surface* testx2; in AccuracyTest1() 367 SDL_Surface* ref; in AccuracyTest1() 459 void AccuracyTest2(SDL_Surface *screen, SDL_Surface *picture) in AccuracyTest2() [all …]
|