0024530: TKMesh - remove unused package IntPoly
[occt.git] / src / OpenGl / OpenGl_GlCore12.hxx
1 // Created on: 2012-03-06
2 // Created by: Kirill GAVRILOV
3 // Copyright (c) 2012-2014 OPEN CASCADE SAS
4 //
5 // This file is part of Open CASCADE Technology software library.
6 //
7 // This library is free software; you can redistribute it and / or modify it
8 // under the terms of the GNU Lesser General Public version 2.1 as published
9 // by the Free Software Foundation, with special exception defined in the file
10 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
11 // distribution for complete text of the license and disclaimer of any warranty.
12 //
13 // Alternatively, this file may be used under the terms of Open CASCADE
14 // commercial license or contractual agreement.
15
16 #ifndef _OpenGl_GlCore12_H__
17 #define _OpenGl_GlCore12_H__
18
19 #include <OpenGl_GlCore11.hxx>
20
21 // GL version can be defined by system gl.h header
22 #undef GL_VERSION_1_2
23 #undef GL_VERSION_1_3
24 #undef GL_VERSION_1_4
25 #undef GL_VERSION_1_5
26 #undef GL_VERSION_2_0
27
28 // include glext.h provided by Khronos group
29 #include <glext.h>
30
31 //! Function list for GL1.2 core functionality.
32 struct OpenGl_GlCore12
33 {
34
35   PFNGLBLENDCOLORPROC        glBlendColor;
36   PFNGLBLENDEQUATIONPROC     glBlendEquation;
37   PFNGLDRAWRANGEELEMENTSPROC glDrawRangeElements;
38   PFNGLTEXIMAGE3DPROC        glTexImage3D;
39   PFNGLTEXSUBIMAGE3DPROC     glTexSubImage3D;
40   PFNGLCOPYTEXSUBIMAGE3DPROC glCopyTexSubImage3D;
41
42 };
43
44 #endif // _OpenGl_GlCore12_H__