Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Check configure-defined macro before doing _anything_ with XShape.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Jul 13, 2010
1 parent 317ad27 commit 3bfd803
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
11 changes: 8 additions & 3 deletions src/video/x11/SDL_x11shape.c
Expand Up @@ -21,13 +21,14 @@
*/

#include <assert.h>
#include <X11/extensions/shape.h>
#include "SDL_x11video.h"
#include "SDL_x11shape.h"
#include "SDL_x11window.h"
#include "SDL_x11video.h"

SDL_WindowShaper* X11_CreateShaper(SDL_Window* window) {
SDL_WindowShaper* result = NULL;

#if SDL_VIDEO_DRIVER_X11_XSHAPE
if (SDL_X11_HAVE_XSHAPE) { /* Make sure X server supports it. */
result = malloc(sizeof(SDL_WindowShaper));
result->window = window;
Expand All @@ -38,6 +39,7 @@ SDL_WindowShaper* X11_CreateShaper(SDL_Window* window) {
int resized_properly = X11_ResizeWindowShape(window);
assert(resized_properly == 0);
}
#endif

return result;
}
Expand Down Expand Up @@ -69,6 +71,8 @@ int X11_ResizeWindowShape(SDL_Window* window) {
int X11_SetWindowShape(SDL_WindowShaper *shaper,SDL_Surface *shape,SDL_WindowShapeMode *shapeMode) {
if(shaper == NULL || shape == NULL || shaper->driverdata == NULL)
return -1;

#if SDL_VIDEO_DRIVER_X11_XSHAPE
if(!SDL_ISPIXELFORMAT_ALPHA(SDL_MasksToPixelFormatEnum(shape->format->BitsPerPixel,shape->format->Rmask,shape->format->Gmask,shape->format->Bmask,shape->format->Amask)))
return -2;
if(shape->w != shaper->window->w || shape->h != shaper->window->h)
Expand All @@ -85,6 +89,7 @@ int X11_SetWindowShape(SDL_WindowShaper *shaper,SDL_Surface *shape,SDL_WindowSha
XSync(windowdata->videodata->display,False);

XFreePixmap(windowdata->videodata->display,shapemask);

#endif

return 0;
}
2 changes: 1 addition & 1 deletion src/video/x11/SDL_x11sym.h
Expand Up @@ -233,7 +233,7 @@ SDL_X11_SYM(Status,XScreenSaverQueryVersion,(Display *dpy,int *major_versionp,in
SDL_X11_SYM(void,XScreenSaverSuspend,(Display *dpy,Bool suspend),(dpy,suspend),return)
#endif

#if 1 /* !!! FIXME: SDL_VIDEO_DRIVER_X11_XSHAPE */
#if SDL_VIDEO_DRIVER_X11_XSHAPE
SDL_X11_MODULE(XSHAPE)
SDL_X11_SYM(void,XShapeCombineMask,(Display *dpy,Window dest,int dest_kind,int x_off,int y_off,Pixmap src,int op),(dpy,dest,dest_kind,x_off,y_off,src,op),)
#endif
Expand Down
3 changes: 3 additions & 0 deletions src/video/x11/SDL_x11video.h
Expand Up @@ -45,6 +45,9 @@
#if SDL_VIDEO_DRIVER_X11_SCRNSAVER
#include <X11/extensions/scrnsaver.h>
#endif
#if SDL_VIDEO_DRIVER_X11_XSHAPE
#include <X11/extensions/shape.h>
#endif

#include "SDL_x11dyn.h"

Expand Down

0 comments on commit 3bfd803

Please sign in to comment.