# HG changeset patch # User Eli Gottlieb # Date 1279508740 14400 # Node ID f14a8c05f5bbdaa7f11dffa20845d04ee9aa5c83 # Parent 506a9165491b8086b77d247d09f53f6df7008e04 Minor bugfixes. testshape now draws a shaped window with bizarre, pixellated gashes of transparency across it, and in doing so seems to hog a system resource and slow the rest of the video system down. diff -r 506a9165491b -r f14a8c05f5bb src/video/SDL_shape.c --- a/src/video/SDL_shape.c Sun Jul 18 22:24:52 2010 -0400 +++ b/src/video/SDL_shape.c Sun Jul 18 23:05:40 2010 -0400 @@ -59,19 +59,30 @@ int x = 0; int y = 0; Uint8 r = 0,g = 0,b = 0,alpha = 0; - Uint8* pixel; - Uint32 bitmap_pixel; + Uint8* pixel = NULL; + Uint32 bitmap_pixel,pixel_value = 0; if(SDL_MUSTLOCK(shape)) SDL_LockSurface(shape); pixel = (Uint8*)shape->pixels; for(y = 0;yh;y++) { - pixel = (Uint8 *)(shape->pixels) + y * shape->pitch; for(x=0;xw;x++) { alpha = 0; - SDL_GetRGBA(*(Uint32*)pixel,shape->format,&r,&g,&b,&alpha); + pixel_value = 0; + pixel = shape->pixels + y * shape->pitch + x * shape->format->BytesPerPixel; + switch(shape->format->BytesPerPixel) { + case(1): + pixel_value = *(Uint8*)pixel; + break; + case(2): + pixel_value = *(Uint16*)pixel; + break; + case(4): + pixel_value = *(Uint32*)pixel; + break; + } + SDL_GetRGBA(pixel_value,shape->format,&r,&g,&b,&alpha); bitmap_pixel = y*shape->w + x; bitmap[bitmap_pixel / ppb] |= (alpha >= alphacutoff ? value : 0) << ((ppb - 1) - (bitmap_pixel % ppb)); - pixel += shape->format->BytesPerPixel; } } if(SDL_MUSTLOCK(shape)) @@ -99,7 +110,7 @@ } } } - //TODO: Platform-specific implementations of SetWindowShape. X11 is finished. Win32 is in progress. + //TODO: Platform-specific implementations of SetWindowShape. X11 is finished. Win32 is finished. Debugging is in progress on both. result = window->display->device->shape_driver.SetWindowShape(window->shaper,shape,shapeMode); window->shaper->hasshape = SDL_TRUE; if((window->shaper->usershownflag & SDL_WINDOW_SHOWN) == SDL_WINDOW_SHOWN) { diff -r 506a9165491b -r f14a8c05f5bb src/video/win32/SDL_win32shape.c --- a/src/video/win32/SDL_win32shape.c Sun Jul 18 22:24:52 2010 -0400 +++ b/src/video/win32/SDL_win32shape.c Sun Jul 18 23:05:40 2010 -0400 @@ -339,7 +339,7 @@ } } - window->shaper->usershownflag = window->flags & SDL_WINDOW_SHOWN; + window->shaper->usershownflag |= window->flags & SDL_WINDOW_SHOWN; return 0; } diff -r 506a9165491b -r f14a8c05f5bb src/video/x11/SDL_x11shape.c --- a/src/video/x11/SDL_x11shape.c Sun Jul 18 22:24:52 2010 -0400 +++ b/src/video/x11/SDL_x11shape.c Sun Jul 18 23:05:40 2010 -0400 @@ -66,7 +66,7 @@ } } - window->shaper->usershownflag = window->flags & SDL_WINDOW_SHOWN; + window->shaper->usershownflag |= window->flags & SDL_WINDOW_SHOWN; return 0; } diff -r 506a9165491b -r f14a8c05f5bb test/testshape.c --- a/test/testshape.c Sun Jul 18 22:24:52 2010 -0400 +++ b/test/testshape.c Sun Jul 18 23:05:40 2010 -0400 @@ -27,8 +27,8 @@ for(i=0;i 0 ? 1 : 0); - pictures[i] = SDL_ConvertSurface(original,&format,0); - //We have no more need of the original now that we have our desired format. - SDL_FreeSurface(original); - if(pictures[i] == NULL) { - int j = 0; - for(j=0;jpixels; - unsigned int pitch = pictures[i]->pitch; - int y =0,x = 0; - for(y=0;yh;y++) - for(x=0;xw;x++) { - Uint32* pixel = pixels + y * pitch + x * pictures[i]->format->BytesPerPixel; - Uint8 r = 0,g = 0,b = 0; - SDL_GetRGB(*pixel,pictures[i]->format,&r,&g,&b); - //if(r == g == b == 0xff) - // *pixel = SDL_MapRGBA(pictures[i]->format,r,g,b,0); - } - - if(SDL_MUSTLOCK(pictures[i])) - SDL_UnlockSurface(pictures[i]); } 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); @@ -123,12 +86,12 @@ event_pending = SDL_PollEvent(&event); unsigned int current_picture = 0; SDL_WindowShapeMode mode = {ShapeModeDefault,1}; - SDL_SetWindowShape(window,pictures[current_picture],&mode); int mouse_down = 0; - Uint32 format,access; + Uint32 format = 0,access = 0; SDL_Rect texture_dimensions = {0,0,0,0}; SDL_QueryTexture(textures[current_picture],&format,&access,&texture_dimensions.w,&texture_dimensions.h); SDL_SetWindowSize(window,texture_dimensions.w,texture_dimensions.h); + SDL_SetWindowShape(window,pictures[current_picture],&mode); while(should_exit == 0) { event_pending = SDL_PollEvent(&event); if(event_pending == 1) {