From 15264b69a106b3012d948c1c242e58997a340b98 Mon Sep 17 00:00:00 2001 From: Eli Gottlieb Date: Fri, 30 Jul 2010 18:04:21 -0400 Subject: [PATCH] Added Andreas's VS2010 patch for testshape. --- test/testshape.c | 71 +++++++++++++++++++++++++++++------------------- 1 file changed, 43 insertions(+), 28 deletions(-) diff --git a/test/testshape.c b/test/testshape.c index 16d79835a..a1c012fba 100644 --- a/test/testshape.c +++ b/test/testshape.c @@ -1,12 +1,8 @@ #include #include -#include -#include -#include -#include -#include -#include -#include +#include +#include "SDL.h" +#include "SDL_shape.h" #define SHAPED_WINDOW_X 150 #define SHAPED_WINDOW_Y 150 @@ -44,7 +40,23 @@ Uint32 time_left() { } int main(int argc,char** argv) { - if(argc < 2) { + Uint8 num_pictures; + LoadedPicture* pictures; + int i, j; + SDL_PixelFormat* format; + Uint32 format_enum; + SDL_Window *window; + SDL_Color black = {0,0,0,0xff}; + SDL_Event event; + int event_pending = 0; + int should_exit = 0; + unsigned int current_picture; + int button_down; + Uint32 pixelFormat; + int access; + SDL_Rect texture_dimensions;; + + if(argc < 2) { printf("SDL_Shape requires at least one bitmap file as argument.\n"); exit(-1); } @@ -54,15 +66,14 @@ int main(int argc,char** argv) { exit(-2); } - Uint8 num_pictures = argc - 1; - LoadedPicture* pictures = malloc(sizeof(LoadedPicture)*num_pictures); - int i = 0; + num_pictures = argc - 1; + pictures = (LoadedPicture *)malloc(sizeof(LoadedPicture)*num_pictures); for(i=0;iformat; - Uint32 format_enum = SDL_MasksToPixelFormatEnum (format->BitsPerPixel,format->Rmask,format->Gmask, format->Bmask,format->Amask); + + format = pictures[i].surface->format; + format_enum = SDL_MasksToPixelFormatEnum (format->BitsPerPixel,format->Rmask,format->Gmask, format->Bmask,format->Amask); if(SDL_ISPIXELFORMAT_ALPHA(format_enum)) { pictures[i].mode.mode = ShapeModeBinarizeAlpha; pictures[i].mode.parameters.binarizationCutoff = 1; } else { pictures[i].mode.mode = ShapeModeColorKey; - SDL_Color black = {0,0,0,0xff}; pictures[i].mode.parameters.colorKey = black; } } - SDL_Window *window = SDL_CreateShapedWindow("SDL_Shape test",SHAPED_WINDOW_X,SHAPED_WINDOW_Y,SHAPED_WINDOW_DIMENSION,SHAPED_WINDOW_DIMENSION,SDL_WINDOW_RESIZABLE | SDL_WINDOW_SHOWN); + window = SDL_CreateShapedWindow("SDL_Shape test",SHAPED_WINDOW_X,SHAPED_WINDOW_Y,SHAPED_WINDOW_DIMENSION,SHAPED_WINDOW_DIMENSION,SDL_WINDOW_RESIZABLE | SDL_WINDOW_SHOWN); if(window == NULL) { for(i=0;i= num_pictures) current_picture = 0; - SDL_QueryTexture(pictures[current_picture].texture,&format,&access,&texture_dimensions.w,&texture_dimensions.h); + SDL_QueryTexture(pictures[current_picture].texture,(Uint32 *)&pixelFormat,(int *)&access,&texture_dimensions.w,&texture_dimensions.h); SDL_SetWindowSize(window,texture_dimensions.w,texture_dimensions.h); - SDL_SetWindowShape(window,pictures[current_picture].surface,&mode); + SDL_SetWindowShape(window,pictures[current_picture].surface,&pictures[current_picture].mode); } if(event.type == SDL_QUIT) should_exit = 1; @@ -172,4 +185,6 @@ int main(int argc,char** argv) { free(pictures); //Call SDL_VideoQuit() before quitting. SDL_VideoQuit(); + + return 0; }