diff options
Diffstat (limited to 'src/library_sdl.js')
-rw-r--r-- | src/library_sdl.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/library_sdl.js b/src/library_sdl.js index 8fd06a43..67b63885 100644 --- a/src/library_sdl.js +++ b/src/library_sdl.js @@ -1247,6 +1247,11 @@ var LibrarySDL = { return 0; }, + SDL_LowerBlit__deps: ['SDL_UpperBlit'], + SDL_LowerBlit: function(src, srcrect, dst, dstrect) { + return _SDL_UpperBlit(src, srcrect, dst, dstrect); + }, + SDL_FillRect: function(surf, rect, color) { var surfData = SDL.surfaces[surf]; assert(!surfData.locked); // but we could unlock and re-lock if we must.. |