opengl.h
1 /*
2 ** UICore
3 ** Copyright (c) 1997-2015 The UICore Team
4 **
5 ** This software is provided 'as-is', without any express or implied
6 ** warranty. In no event will the authors be held liable for any damages
7 ** arising from the use of this software.
8 **
9 ** Permission is granted to anyone to use this software for any purpose,
10 ** including commercial applications, and to alter it and redistribute it
11 ** freely, subject to the following restrictions:
12 **
13 ** 1. The origin of this software must not be misrepresented; you must not
14 ** claim that you wrote the original software. If you use this software
15 ** in a product, an acknowledgment in the product documentation would be
16 ** appreciated but is not required.
17 ** 2. Altered source versions must be plainly marked as such, and must not be
18 ** misrepresented as being the original software.
19 ** 3. This notice may not be removed or altered from any source distribution.
20 **
21 ** Note: Some of the libraries UICore may link to may have additional
22 ** requirements or restrictions.
23 **
24 ** File Author(s):
25 **
26 ** Magnus Norddahl
27 */
28 
29 
30 #pragma once
31 
32 #include "opengl_defines.h"
33 #include <utility>
34 #include <string>
35 #include "../Display/Render/texture.h"
36 
37 #if defined(_MSC_VER)
38 #define cl_tls_variable _declspec(thread)
39 #elif defined(__APPLE__) // To do: change check to only apply to iOS/ARM target
40 #define cl_tls_variable
41 #else
42 #define cl_tls_variable __thread
43 #endif
44 
45 namespace uicore
46 {
47  class GLFunctions;
48  class GraphicContext;
49  class OpenGLContextProvider;
50  class GL1GraphicContext;
51  class GL3GraphicContext;
52 
53  enum TextureFormat;
54 
56  typedef void (ProcAddress)();
57 
58  typedef struct
59  {
61  bool valid;
66 
67  typedef struct
68  {
74 
75  } MessageLog_GL;
76 
78  class OpenGL
79  {
80  public:
82  static ProcAddress *get_proc_address(const std::string &function_name);
83 
85  static cl_tls_variable GLFunctions *functions;
86 
89 
91  static void set_active(const GraphicContextPtr &gc);
92 
94  static void set_active(const OpenGLContextProvider * const gc_provider);
95 
101  static bool set_active();
102 
106  static void check_error();
107 
114  static std::vector<MessageLog_GL> get_message_log(GLuint numMsgs);
115 
117  static GLuint get_texture_handle(const TexturePtr &texture);
118 
119  static GLenum to_enum(DrawBuffer buf);
120  static GLenum to_enum(CompareFunction func);
121  static GLenum to_enum(StencilOp op);
122  static GLenum to_enum(CullMode mode);
123  static GLenum to_enum(FillMode mode);
124  static GLenum to_enum(BlendFunc func);
125  static GLenum to_enum(BlendEquation eq);
126  static GLenum to_enum(VertexAttributeDataType value);
127  static GLenum to_enum(PrimitivesType value);
128  static GLenum to_enum(LogicOp op);
129  static GLenum to_enum(TextureFilter filter);
130  static GLenum to_enum(TextureWrapMode mode);
131  static GLenum to_enum(TextureCompareMode mode);
132  static GLenum to_cube_target(int index);
133  static GLenum to_enum(BufferUsage usage);
134  static GLenum to_enum(BufferAccess access);
135 
136  private:
140  static void remove_active(const OpenGLContextProvider * const gc_provider);
141 
142  friend class GL1GraphicContext;
143  friend class GL3GraphicContext;
144  friend class PBuffer_GL1_Impl;
145  };
146 }
TextureFilter
Texture filters.
Definition: texture.h:64
PrimitivesType
Primitive types.
Definition: graphic_context.h:223
GLenum pixel_format
Definition: opengl.h:63
GLenum source
Definition: opengl.h:69
static GLenum to_enum(DrawBuffer buf)
GLenum type
Definition: opengl.h:70
std::shared_ptr< Texture > TexturePtr
Definition: d3d_target.h:37
BlendFunc
Blending functions.
Definition: graphic_context.h:157
static TextureFormat_GL textureformat(TextureFormat format)
Returns the opengl texture format.
BufferUsage
Array Buffer usage enum.
Definition: buffer_usage.h:35
FillMode
Polygon filling modes.
Definition: graphic_context.h:80
static cl_tls_variable GLFunctions * functions
Function table for OpenGL 2.0.
Definition: opengl.h:85
static void check_error()
Throw an exception if an OpenGL error was detected ( Using glGetError() )
GLenum pixel_datatype
Definition: opengl.h:64
CompareFunction
Compare functions.
Definition: graphic_context.h:95
TextureFormat
Texture format.
Definition: texture_format.h:35
GLint internal_format
Definition: opengl.h:62
Definition: opengl.h:58
TextureCompareMode
Texture compare modes.
Definition: texture.h:75
friend class PBuffer_GL1_Impl
Definition: opengl.h:144
static std::vector< MessageLog_GL > get_message_log(GLuint numMsgs)
Get the OpenGL message log.
unsigned int GLuint
Definition: opengl_defines.h:61
static bool set_active()
Sets the thread's OpenGL context to the first valid allocated one.
OpenGL utility class.
Definition: opengl.h:78
Definition: opengl.h:67
GLFunctions.
Definition: opengl_wrap.h:45
LogicOp
Logic Op.
Definition: graphic_context.h:136
GLenum severity
Definition: opengl.h:71
GLuint id
Definition: opengl.h:72
bool valid
True when this is a valid opengl format.
Definition: opengl.h:61
int GLint
Definition: opengl_defines.h:57
BufferAccess
Array Buffer access enum.
Definition: buffer_usage.h:49
CullMode
Polygon culling modes.
Definition: graphic_context.h:72
std::shared_ptr< GraphicContext > GraphicContextPtr
Definition: d3d_target.h:49
static GLenum to_cube_target(int index)
VertexAttributeDataType
Primitives array description.
Definition: primitives_array.h:48
TextureWrapMode
Texture coordinate wrapping modes.
Definition: texture.h:56
static GLuint get_texture_handle(const TexturePtr &texture)
Returns the OpenGL texture handle.
void( ProcAddress)()
Extension procedure address typedef for OpenGL.
Definition: opengl.h:56
friend class GL3GraphicContext
Definition: opengl.h:143
Definition: Application/application.h:35
StencilOp
Stencil operations.
Definition: graphic_context.h:108
friend class GL1GraphicContext
Definition: opengl.h:142
std::string message
Definition: opengl.h:73
TextureFormat texture_format
Definition: opengl.h:60
BlendEquation
Blending equations.
Definition: graphic_context.h:206
unsigned int GLenum
Definition: opengl_defines.h:52
static ProcAddress * get_proc_address(const std::string &function_name)
Get OpenGL extension specific function address.
DrawBuffer
Drawing buffers.
Definition: graphic_context.h:121