Home | History | Annotate | Download | only in sdl

Lines Matching refs:fSurface

55         fSurface = NULL;
60 fSurface = SDL_CreateRGBSurface(SDL_SWSURFACE, fScreen->w, fScreen->h,
67 if (fSurface) {
68 SDL_FreeSurface(fSurface);
88 if ( SDL_MUSTLOCK(fSurface) ) {
89 if ( SDL_LockSurface(fSurface) < 0 ) {
96 if (skia_setBitmapFromSurface(&bitmap, fSurface)) {
101 if ( SDL_MUSTLOCK(fSurface) ) {
102 SDL_UnlockSurface(fSurface);
105 int result = SDL_BlitSurface(fSurface, NULL, fScreen, NULL);