Skip to content

Commit

Permalink
Removed unused internal window shape functions.
Browse files Browse the repository at this point in the history
  • Loading branch information
philippwiesemann committed May 25, 2017
1 parent a7fc282 commit c66f047
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 13 deletions.
5 changes: 0 additions & 5 deletions src/video/directfb/SDL_DirectFB_shape.c
Expand Up @@ -29,11 +29,6 @@

#include "../SDL_shape_internals.h"

SDL_Window*
DirectFB_CreateShapedWindow(const char *title,unsigned int x,unsigned int y,unsigned int w,unsigned int h,Uint32 flags) {
return SDL_CreateWindow(title,x,y,w,h,flags /* | SDL_DFB_WINDOW_SHAPED */);
}

SDL_WindowShaper*
DirectFB_CreateShaper(SDL_Window* window) {
SDL_WindowShaper* result = NULL;
Expand Down
1 change: 0 additions & 1 deletion src/video/directfb/SDL_DirectFB_shape.h
Expand Up @@ -31,7 +31,6 @@ typedef struct {
IDirectFBSurface *surface;
} SDL_ShapeData;

extern SDL_Window* DirectFB_CreateShapedWindow(const char *title,unsigned int x,unsigned int y,unsigned int w,unsigned int h,Uint32 flags);
extern SDL_WindowShaper* DirectFB_CreateShaper(SDL_Window* window);
extern int DirectFB_ResizeWindowShape(SDL_Window* window);
extern int DirectFB_SetWindowShape(SDL_WindowShaper *shaper,SDL_Surface *shape,SDL_WindowShapeMode *shapeMode);
Expand Down
6 changes: 0 additions & 6 deletions src/video/x11/SDL_x11shape.c
Expand Up @@ -28,11 +28,6 @@
#include "SDL_x11window.h"
#include "../SDL_shape_internals.h"

SDL_Window*
X11_CreateShapedWindow(const char *title,unsigned int x,unsigned int y,unsigned int w,unsigned int h,Uint32 flags) {
return SDL_CreateWindow(title,x,y,w,h,flags);
}

SDL_WindowShaper*
X11_CreateShaper(SDL_Window* window) {
SDL_WindowShaper* result = NULL;
Expand Down Expand Up @@ -118,4 +113,3 @@ X11_SetWindowShape(SDL_WindowShaper *shaper,SDL_Surface *shape,SDL_WindowShapeMo
}

#endif /* SDL_VIDEO_DRIVER_X11 */

1 change: 0 additions & 1 deletion src/video/x11/SDL_x11shape.h
Expand Up @@ -32,7 +32,6 @@ typedef struct {
Uint32 bitmapsize;
} SDL_ShapeData;

extern SDL_Window* X11_CreateShapedWindow(const char *title,unsigned int x,unsigned int y,unsigned int w,unsigned int h,Uint32 flags);
extern SDL_WindowShaper* X11_CreateShaper(SDL_Window* window);
extern int X11_ResizeWindowShape(SDL_Window* window);
extern int X11_SetWindowShape(SDL_WindowShaper *shaper,SDL_Surface *shape,SDL_WindowShapeMode *shapeMode);
Expand Down

0 comments on commit c66f047

Please sign in to comment.