Mercurial > sdl-ios-xcode
diff src/video/SDL_shape.c @ 4778:9838d3525a1b
Stubbed out the new get/set parameter functions, added the start of the enum, union, and struct for those parameters themselves, and added doxygen comments throughout the SDL_shape.h header.
author | Eli Gottlieb <eligottlieb@gmail.com> |
---|---|
date | Thu, 10 Jun 2010 17:37:19 -0400 |
parents | 29dcad9c58b3 |
children | 4f915a47b995 |
line wrap: on
line diff
--- a/src/video/SDL_shape.c Sat Jun 05 15:12:27 2010 -0400 +++ b/src/video/SDL_shape.c Thu Jun 10 17:37:19 2010 -0400 @@ -37,3 +37,17 @@ int SDL_SelectShapeRenderer(const SDL_Window *window) { return -1; } + +int SDL_SetShapeParameters(SDL_Window *window,SDL_WindowShapeMode shapeMode) { + if(window == NULL || !SDL_WindowIsShaped(window)) + return -2; + return -3; +} + +int SDL_GetShapeParameters(SDL_Window *window,SDL_WindowShapeMode *shapeMode) { + if(shapeMode == NULL) + return -1; + if(window == NULL || !SDL_WindowIsShaped(window)) + return -2; + return -3; +}