Home
last modified time | relevance | path

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

/third_party/flutter/skia/third_party/externals/sdl/src/video/
DSDL_bmp.c136 fp_offset = SDL_RWtell(src); in SDL_LoadBMP_RW()
221 headerSize = (Uint32) (SDL_RWtell(src) - (fp_offset + 14)); in SDL_LoadBMP_RW()
566 fp_offset = SDL_RWtell(dst); in SDL_SaveBMP_RW()
650 bfOffBits = (Uint32)(SDL_RWtell(dst) - fp_offset); in SDL_SaveBMP_RW()
677 bfSize = (Uint32)(SDL_RWtell(dst) - fp_offset); in SDL_SaveBMP_RW()
/third_party/flutter/skia/third_party/externals/sdl/include/
DSDL_rwops.h186 #define SDL_RWtell(ctx) (ctx)->seek(ctx, 0, RW_SEEK_CUR) macro