Mercurial > sdl-ios-xcode
changeset 4847:4201864f77e7
Fixing variable naming style.
author | egottlieb |
---|---|
date | Tue, 10 Aug 2010 16:30:53 -0400 |
parents | 4f1573996a65 |
children | b67815cf9f25 |
files | src/video/SDL_shape.c |
diffstat | 1 files changed, 7 insertions(+), 7 deletions(-) [+] |
line wrap: on
line diff
--- a/src/video/SDL_shape.c Tue Aug 10 16:10:26 2010 -0400 +++ b/src/video/SDL_shape.c Tue Aug 10 16:30:53 2010 -0400 @@ -226,7 +226,7 @@ } int -SDL_SetWindowShape(SDL_Window *window,SDL_Surface *shape,SDL_WindowShapeMode *shapeMode) { +SDL_SetWindowShape(SDL_Window *window,SDL_Surface *shape,SDL_WindowShapeMode *shape_mode) { int result; if(window == NULL || !SDL_IsShapedWindow(window)) //The window given was not a shapeable window. @@ -235,9 +235,9 @@ //Invalid shape argument. return SDL_INVALID_SHAPE_ARGUMENT; - if(shapeMode != NULL) - window->shaper->mode = *shapeMode; - result = window->display->device->shape_driver.SetWindowShape(window->shaper,shape,shapeMode); + if(shape_mode != NULL) + window->shaper->mode = *shape_mode; + result = window->display->device->shape_driver.SetWindowShape(window->shaper,shape,shape_mode); window->shaper->hasshape = SDL_TRUE; if((window->shaper->usershownflag & SDL_WINDOW_SHOWN) == SDL_WINDOW_SHOWN) { SDL_ShowWindow(window); @@ -254,9 +254,9 @@ } int -SDL_GetShapedWindowMode(SDL_Window *window,SDL_WindowShapeMode *shapeMode) { +SDL_GetShapedWindowMode(SDL_Window *window,SDL_WindowShapeMode *shape_mode) { if(window != NULL && SDL_IsShapedWindow(window)) { - if(shapeMode == NULL) { + if(shape_mode == NULL) { if(SDL_WindowHasAShape(window)) //The window given has a shape. return 0; @@ -265,7 +265,7 @@ return SDL_WINDOW_LACKS_SHAPE; } else { - *shapeMode = window->shaper->mode; + *shape_mode = window->shaper->mode; return 0; } }