| | |
| | | /* |
| | | Simple DirectMedia Layer |
| | | Copyright (C) 1997-2016 Sam Lantinga <slouken@libsdl.org> |
| | | Copyright (C) 1997-2018 Sam Lantinga <slouken@libsdl.org> |
| | | |
| | | This software is provided 'as-is', without any express or implied |
| | | warranty. In no event will the authors be held liable for any damages |
| | |
| | | #include "SDL_x11shape.h" |
| | | #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) { |
| | |
| | | } |
| | | |
| | | #endif /* SDL_VIDEO_DRIVER_X11 */ |
| | | |