Skip to content

Latest commit

 

History

History
87 lines (72 loc) · 2.37 KB

SDL_opengl.h

File metadata and controls

87 lines (72 loc) · 2.37 KB
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/*
Simple DirectMedia Layer
Copyright (C) 1997-2014 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
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
*/
/**
* \file SDL_opengl.h
*
* This is a simple file to encapsulate the OpenGL API headers.
*/
#ifndef _SDL_opengl_h
#define _SDL_opengl_h
#include "SDL_config.h"
#ifndef __IPHONEOS__
#ifdef __WIN32__
Apr 26, 2014
Apr 26, 2014
36
#ifndef WIN32_LEAN_AND_MEAN
37
#define WIN32_LEAN_AND_MEAN
Apr 26, 2014
Apr 26, 2014
38
#endif
39
40
41
42
43
44
45
46
47
#ifndef NOMINMAX
#define NOMINMAX /* Don't defined min() and max() */
#endif
#include <windows.h>
#endif
#ifdef __glext_h_
/* Someone has already included glext.h */
#define NO_SDL_GLEXT
Jun 16, 2014
Jun 16, 2014
48
49
#else
#define _SDL_CLEAR_GLEXT_HEADERGUARD
50
51
52
53
54
55
56
57
#define __glext_h_ /* Don't let gl.h include glext.h */
#endif
#if defined(__MACOSX__)
#include <OpenGL/gl.h> /* Header File For The OpenGL Library */
#define __X_GL_H
#else
#include <GL/gl.h> /* Header File For The OpenGL Library */
#endif
Jun 16, 2014
Jun 16, 2014
58
#ifdef _SDL_CLEAR_GLEXT_HEADERGUARD
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#undef __glext_h_
#endif
/**
* \file SDL_opengl.h
*
* This file is included because glext.h is not available on some systems.
* If you don't want this version included, simply define ::NO_SDL_GLEXT.
*
* The latest version is available from:
* http://www.opengl.org/registry/
*/
/**
* \def NO_SDL_GLEXT
*
* Define this if you have your own version of glext.h and want to disable the
* version included in SDL_opengl.h.
*/
#if !defined(NO_SDL_GLEXT) && !defined(GL_GLEXT_LEGACY)
Jun 4, 2014
Jun 4, 2014
80
#include "SDL_opengl_glext.h"
81
82
83
84
85
86
87
#endif /* NO_SDL_GLEXT */
#endif /* !__IPHONEOS__ */
#endif /* _SDL_opengl_h */
/* vi: set ts=4 sw=4 expandtab: */