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

Latest commit

 

History

History
51 lines (42 loc) · 1.57 KB

SDL_shape.c

File metadata and controls

51 lines (42 loc) · 1.57 KB
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
SDL - Simple DirectMedia Layer
Copyright (C) 2010 Eli Gottlieb
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Eli Gottlieb
eligottlieb@gmail.com
*/
May 27, 2010
May 27, 2010
22
#include "SDL_config.h"
Jun 5, 2010
Jun 5, 2010
23
May 27, 2010
May 27, 2010
24
25
26
#include "SDL.h"
#include "SDL_video.h"
#include "SDL_sysvideo.h"
27
#include "SDL_shape.h"
May 21, 2010
May 21, 2010
28
May 27, 2010
May 27, 2010
29
SDL_Window* SDL_CreateShapedWindow(const char *title,unsigned int x,unsigned int y,unsigned int w,unsigned int h,Uint32 flags) {
May 21, 2010
May 21, 2010
30
31
32
return NULL;
}
Jun 22, 2010
Jun 22, 2010
33
SDL_bool SDL_IsShapedWindow(const SDL_Window *window) {
May 27, 2010
May 27, 2010
34
return SDL_FALSE;
May 21, 2010
May 21, 2010
35
36
}
Jun 22, 2010
Jun 22, 2010
37
int SDL_SetWindowShape(SDL_Window *window,SDL_Surface *shape,SDL_WindowShapeMode *shapeMode) {
Jun 10, 2010
Jun 10, 2010
38
39
if(window == NULL || !SDL_WindowIsShaped(window))
return -2;
Jun 20, 2010
Jun 20, 2010
40
41
if(shape == NULL)
return -1;
Jun 10, 2010
Jun 10, 2010
42
43
44
return -3;
}
Jun 22, 2010
Jun 22, 2010
45
int SDL_GetShapedWindowMode(SDL_Window *window,SDL_WindowShapeMode *shapeMode) {
Jun 10, 2010
Jun 10, 2010
46
47
48
49
50
51
if(shapeMode == NULL)
return -1;
if(window == NULL || !SDL_WindowIsShaped(window))
return -2;
return -3;
}