blob: 8271dcbe93991473e1beb587b6feba13ab669769 [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001
twiz@google.com59a190b2011-03-14 21:23:01 +00002/*
epoger@google.comec3ed6a2011-07-28 14:26:00 +00003 * Copyright 2011 Google Inc.
4 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
twiz@google.com59a190b2011-03-14 21:23:01 +00007 */
8
9
epoger@google.comec3ed6a2011-07-28 14:26:00 +000010
twiz@google.com59a190b2011-03-14 21:23:01 +000011#ifndef GrGLInterface_DEFINED
12#define GrGLInterface_DEFINED
13
bsalomon@google.comf987d1b2011-04-04 17:13:52 +000014#include "GrGLConfig.h"
bsalomon@google.com0b77d682011-08-19 13:28:54 +000015#include "GrRefCnt.h"
twiz@google.com59a190b2011-03-14 21:23:01 +000016
17#if !defined(GR_GL_FUNCTION_TYPE)
18 #define GR_GL_FUNCTION_TYPE
19#endif
20
21////////////////////////////////////////////////////////////////////////////////
22
23/**
24 * Helpers for glGetString()
25 */
bsalomon@google.comf987d1b2011-04-04 17:13:52 +000026
bsalomon@google.com4d062142011-09-22 14:31:24 +000027typedef uint32_t GrGLVersion;
bsalomon@google.comedfe1aa2011-09-29 14:40:26 +000028typedef uint32_t GrGLSLVersion;
bsalomon@google.comc82b8892011-09-22 14:10:33 +000029
bsalomon@google.comedfe1aa2011-09-29 14:40:26 +000030#define GR_GL_VER(major, minor) ((static_cast<int>(major) << 16) | \
31 static_cast<int>(minor))
32#define GR_GLSL_VER(major, minor) ((static_cast<int>(major) << 16) | \
33 static_cast<int>(minor))
bsalomon@google.comc82b8892011-09-22 14:10:33 +000034
bsalomon@google.com2c17fcd2011-07-06 17:47:02 +000035// these variants assume caller already has a string from glGetString()
bsalomon@google.comc82b8892011-09-22 14:10:33 +000036GrGLVersion GrGLGetVersionFromString(const char* versionString);
bsalomon@google.comedfe1aa2011-09-29 14:40:26 +000037GrGLSLVersion GrGLGetGLSLVersionFromString(const char* versionString);
bsalomon@google.comc82b8892011-09-22 14:10:33 +000038bool GrGLHasExtensionFromString(const char* ext, const char* extensionString);
bsalomon@google.comf987d1b2011-04-04 17:13:52 +000039
bsalomon@google.com2c17fcd2011-07-06 17:47:02 +000040// these variants call glGetString()
bsalomon@google.comc82b8892011-09-22 14:10:33 +000041bool GrGLGetString(const GrGLInterface*, const char* ext);
42GrGLVersion GrGLGetVersion(const GrGLInterface*);
bsalomon@google.comedfe1aa2011-09-29 14:40:26 +000043GrGLSLVersion GrGLGetGLSLVersion(const GrGLInterface*);
bsalomon@google.comf987d1b2011-04-04 17:13:52 +000044
twiz@google.com59a190b2011-03-14 21:23:01 +000045////////////////////////////////////////////////////////////////////////////////
46
bsalomon@google.com0b77d682011-08-19 13:28:54 +000047/**
48 * Rather than depend on platform-specific GL headers and libraries, we require
49 * the client to provide a struct of GL function pointers. This struct can be
50 * specified per-GrContext as a parameter to GrContext::Create. If NULL is
51 * passed to Create then the "default" GL interface is used. If the default is
52 * also NULL GrContext creation will fail.
53 *
bsalomon@google.com6fb736f2011-09-16 18:51:57 +000054 * The default interface is returned by GrGLDefaultInterface. This function's
55 * implementation is platform-specifc. Several have been provided, along with an
56 * implementation that simply returns NULL. It is implementation-specific
57 * whether the same GrGLInterface is returned or whether a new one is created
58 * at each call. Some platforms may not be able to use a single GrGLInterface
59 * because extension function ptrs vary across contexts. Note that GrGLInterface
60 * is ref-counted. So if the same object is returned by multiple calls to
61 * GrGLDefaultInterface, each should bump the ref count.
bsalomon@google.com56bfc5a2011-09-01 13:28:16 +000062 *
63 * By defining GR_GL_PER_GL_CALL_IFACE_CALLBACK to 1 the client can specify a
64 * callback function that will be called prior to each GL function call. See
65 * comments in GrGLConfig.h
twiz@google.com59a190b2011-03-14 21:23:01 +000066 */
twiz@google.com59a190b2011-03-14 21:23:01 +000067
bsalomon@google.com0b77d682011-08-19 13:28:54 +000068struct GrGLInterface;
69
bsalomon@google.com6fb736f2011-09-16 18:51:57 +000070const GrGLInterface* GrGLDefaultInterface();
twiz@google.com59a190b2011-03-14 21:23:01 +000071
twiz@google.com0f31ca72011-03-18 17:38:11 +000072typedef unsigned int GrGLenum;
73typedef unsigned char GrGLboolean;
74typedef unsigned int GrGLbitfield;
75typedef signed char GrGLbyte;
bsalomon@google.com271cffc2011-05-20 14:13:56 +000076typedef char GrGLchar;
twiz@google.com0f31ca72011-03-18 17:38:11 +000077typedef short GrGLshort;
78typedef int GrGLint;
79typedef int GrGLsizei;
80typedef unsigned char GrGLubyte;
81typedef unsigned short GrGLushort;
82typedef unsigned int GrGLuint;
83typedef float GrGLfloat;
84typedef float GrGLclampf;
85typedef double GrGLdouble;
86typedef double GrGLclampd;
87typedef void GrGLvoid;
bsalomon@google.comf987d1b2011-04-04 17:13:52 +000088typedef long GrGLintptr;
89typedef long GrGLsizeiptr;
twiz@google.com0f31ca72011-03-18 17:38:11 +000090
twiz@google.comb65e0cb2011-03-18 20:41:44 +000091enum GrGLBinding {
92 kDesktop_GrGLBinding = 0x01,
93 kES1_GrGLBinding = 0x02,
94 kES2_GrGLBinding = 0x04
95};
96
twiz@google.com59a190b2011-03-14 21:23:01 +000097extern "C" {
twiz@google.com0f31ca72011-03-18 17:38:11 +000098 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLActiveTextureProc)(GrGLenum texture);
99 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLAttachShaderProc)(GrGLuint program, GrGLuint shader);
100 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLBindAttribLocationProc)(GrGLuint program, GrGLuint index, const char* name);
101 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLBindBufferProc)(GrGLenum target, GrGLuint buffer);
102 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLBindTextureProc)(GrGLenum target, GrGLuint texture);
103 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLBlendColorProc)(GrGLclampf red, GrGLclampf green, GrGLclampf blue, GrGLclampf alpha);
bsalomon@google.combc5cf512011-09-21 16:21:07 +0000104 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLBindFragDataLocationProc)(GrGLuint program, GrGLuint colorNumber, const GrGLchar* name);
twiz@google.com0f31ca72011-03-18 17:38:11 +0000105 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLBlendFuncProc)(GrGLenum sfactor, GrGLenum dfactor);
bsalomon@google.comf987d1b2011-04-04 17:13:52 +0000106 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLBufferDataProc)(GrGLenum target, GrGLsizeiptr size, const GrGLvoid* data, GrGLenum usage);
107 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLBufferSubDataProc)(GrGLenum target, GrGLintptr offset, GrGLsizeiptr size, const GrGLvoid* data);
twiz@google.com0f31ca72011-03-18 17:38:11 +0000108 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLClearProc)(GrGLbitfield mask);
109 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLClearColorProc)(GrGLclampf red, GrGLclampf green, GrGLclampf blue, GrGLclampf alpha);
110 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLClearStencilProc)(GrGLint s);
111 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLClientActiveTextureProc)(GrGLenum texture);
112 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLColor4ubProc)(GrGLubyte red, GrGLubyte green, GrGLubyte blue, GrGLubyte alpha);
113 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLColorMaskProc)(GrGLboolean red, GrGLboolean green, GrGLboolean blue, GrGLboolean alpha);
114 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLColorPointerProc)(GrGLint size, GrGLenum type, GrGLsizei stride, const GrGLvoid* pointer);
115 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLCompileShaderProc)(GrGLuint shader);
116 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLCompressedTexImage2DProc)(GrGLenum target, GrGLint level, GrGLenum internalformat, GrGLsizei width, GrGLsizei height, GrGLint border, GrGLsizei imageSize, const GrGLvoid* data);
117 typedef GrGLuint (GR_GL_FUNCTION_TYPE *GrGLCreateProgramProc)(void);
118 typedef GrGLuint (GR_GL_FUNCTION_TYPE *GrGLCreateShaderProc)(GrGLenum type);
119 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLCullFaceProc)(GrGLenum mode);
120 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLDeleteBuffersProc)(GrGLsizei n, const GrGLuint* buffers);
121 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLDeleteProgramProc)(GrGLuint program);
122 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLDeleteShaderProc)(GrGLuint shader);
123 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLDeleteTexturesProc)(GrGLsizei n, const GrGLuint* textures);
124 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLDepthMaskProc)(GrGLboolean flag);
125 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLDisableProc)(GrGLenum cap);
126 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLDisableClientStateProc)(GrGLenum array);
127 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLDisableVertexAttribArrayProc)(GrGLuint index);
128 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLDrawArraysProc)(GrGLenum mode, GrGLint first, GrGLsizei count);
bsalomon@google.comd32c5f52011-08-02 19:29:03 +0000129 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLDrawBufferProc)(GrGLenum mode);
130 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLDrawBuffersProc)(GrGLsizei n, const GrGLenum* bufs);
twiz@google.com0f31ca72011-03-18 17:38:11 +0000131 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLDrawElementsProc)(GrGLenum mode, GrGLsizei count, GrGLenum type, const GrGLvoid* indices);
132 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLEnableProc)(GrGLenum cap);
133 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLEnableClientStateProc)(GrGLenum cap);
134 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLEnableVertexAttribArrayProc)(GrGLuint index);
135 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLFrontFaceProc)(GrGLenum mode);
136 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLGenBuffersProc)(GrGLsizei n, GrGLuint* buffers);
twiz@google.com0f31ca72011-03-18 17:38:11 +0000137 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLGenTexturesProc)(GrGLsizei n, GrGLuint* textures);
138 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLGetBufferParameterivProc)(GrGLenum target, GrGLenum pname, GrGLint* params);
bsalomon@google.comf987d1b2011-04-04 17:13:52 +0000139 typedef GrGLenum (GR_GL_FUNCTION_TYPE *GrGLGetErrorProc)(void);
twiz@google.com0f31ca72011-03-18 17:38:11 +0000140 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLGetIntegervProc)(GrGLenum pname, GrGLint* params);
141 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLGetProgramInfoLogProc)(GrGLuint program, GrGLsizei bufsize, GrGLsizei* length, char* infolog);
142 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLGetProgramivProc)(GrGLuint program, GrGLenum pname, GrGLint* params);
143 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLGetShaderInfoLogProc)(GrGLuint shader, GrGLsizei bufsize, GrGLsizei* length, char* infolog);
144 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLGetShaderivProc)(GrGLuint shader, GrGLenum pname, GrGLint* params);
145 typedef const GrGLubyte* (GR_GL_FUNCTION_TYPE *GrGLGetStringProc)(GrGLenum name);
bsalomon@google.comcee661a2011-07-26 12:32:36 +0000146 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLGetTexLevelParameteriv)(GrGLenum target, GrGLint level, GrGLenum pname, GrGLint* params);
twiz@google.com0f31ca72011-03-18 17:38:11 +0000147 typedef GrGLint (GR_GL_FUNCTION_TYPE *GrGLGetUniformLocationProc)(GrGLuint program, const char* name);
148 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLLineWidthProc)(GrGLfloat width);
149 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLLinkProgramProc)(GrGLuint program);
150 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLLoadMatrixfProc)(const GrGLfloat* m);
151 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLMatrixModeProc)(GrGLenum mode);
152 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLPixelStoreiProc)(GrGLenum pname, GrGLint param);
153 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLPointSizeProc)(GrGLfloat size);
bsalomon@google.comc49d66b2011-08-03 14:22:30 +0000154 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLReadBufferProc)(GrGLenum src);
twiz@google.com0f31ca72011-03-18 17:38:11 +0000155 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLReadPixelsProc)(GrGLint x, GrGLint y, GrGLsizei width, GrGLsizei height, GrGLenum format, GrGLenum type, GrGLvoid* pixels);
156 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLScissorProc)(GrGLint x, GrGLint y, GrGLsizei width, GrGLsizei height);
157 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLShadeModelProc)(GrGLenum mode);
158 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLShaderSourceProc)(GrGLuint shader, GrGLsizei count, const char** str, const GrGLint* length);
159 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLStencilFuncProc)(GrGLenum func, GrGLint ref, GrGLuint mask);
160 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLStencilFuncSeparateProc)(GrGLenum face, GrGLenum func, GrGLint ref, GrGLuint mask);
161 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLStencilMaskProc)(GrGLuint mask);
162 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLStencilMaskSeparateProc)(GrGLenum face, GrGLuint mask);
163 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLStencilOpProc)(GrGLenum fail, GrGLenum zfail, GrGLenum zpass);
164 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLStencilOpSeparateProc)(GrGLenum face, GrGLenum fail, GrGLenum zfail, GrGLenum zpass);
165 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLTexCoordPointerProc)(GrGLint size, GrGLenum type, GrGLsizei stride, const GrGLvoid* pointer);
166 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLTexEnviProc)(GrGLenum target, GrGLenum pname, GrGLint param);
167 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLTexImage2DProc)(GrGLenum target, GrGLint level, GrGLint internalformat, GrGLsizei width, GrGLsizei height, GrGLint border, GrGLenum format, GrGLenum type, const GrGLvoid* pixels);
168 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLTexParameteriProc)(GrGLenum target, GrGLenum pname, GrGLint param);
169 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLTexSubImage2DProc)(GrGLenum target, GrGLint level, GrGLint xoffset, GrGLint yoffset, GrGLsizei width, GrGLsizei height, GrGLenum format, GrGLenum type, const GrGLvoid* pixels);
bsalomon@google.combf2a4692011-05-04 12:35:39 +0000170 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLUniform1fProc)(GrGLint location, GrGLfloat v0);
171 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLUniform1iProc)(GrGLint location, GrGLint v0);
twiz@google.com0f31ca72011-03-18 17:38:11 +0000172 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLUniform1fvProc)(GrGLint location, GrGLsizei count, const GrGLfloat* v);
bsalomon@google.combf2a4692011-05-04 12:35:39 +0000173 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLUniform1ivProc)(GrGLint location, GrGLsizei count, const GrGLint* v);
174 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLUniform2fProc)(GrGLint location, GrGLfloat v0, GrGLfloat v1);
175 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLUniform2iProc)(GrGLint location, GrGLint v0, GrGLint v1);
176 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLUniform2fvProc)(GrGLint location, GrGLsizei count, const GrGLfloat* v);
177 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLUniform2ivProc)(GrGLint location, GrGLsizei count, const GrGLint* v);
178 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLUniform3fProc)(GrGLint location, GrGLfloat v0, GrGLfloat v1, GrGLfloat v2);
179 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLUniform3iProc)(GrGLint location, GrGLint v0, GrGLint v1, GrGLint v2);
180 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLUniform3fvProc)(GrGLint location, GrGLsizei count, const GrGLfloat* v);
181 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLUniform3ivProc)(GrGLint location, GrGLsizei count, const GrGLint* v);
182 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLUniform4fProc)(GrGLint location, GrGLfloat v0, GrGLfloat v1, GrGLfloat v2, GrGLfloat v3);
183 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLUniform4iProc)(GrGLint location, GrGLint v0, GrGLint v1, GrGLint v2, GrGLint v3);
twiz@google.com0f31ca72011-03-18 17:38:11 +0000184 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLUniform4fvProc)(GrGLint location, GrGLsizei count, const GrGLfloat* v);
bsalomon@google.combf2a4692011-05-04 12:35:39 +0000185 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLUniform4ivProc)(GrGLint location, GrGLsizei count, const GrGLint* v);
186 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLUniformMatrix2fvProc)(GrGLint location, GrGLsizei count, GrGLboolean transpose, const GrGLfloat* value);
twiz@google.com0f31ca72011-03-18 17:38:11 +0000187 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLUniformMatrix3fvProc)(GrGLint location, GrGLsizei count, GrGLboolean transpose, const GrGLfloat* value);
bsalomon@google.combf2a4692011-05-04 12:35:39 +0000188 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLUniformMatrix4fvProc)(GrGLint location, GrGLsizei count, GrGLboolean transpose, const GrGLfloat* value);
twiz@google.com0f31ca72011-03-18 17:38:11 +0000189 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLUseProgramProc)(GrGLuint program);
190 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLVertexAttrib4fvProc)(GrGLuint indx, const GrGLfloat* values);
191 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLVertexAttribPointerProc)(GrGLuint indx, GrGLint size, GrGLenum type, GrGLboolean normalized, GrGLsizei stride, const GrGLvoid* ptr);
192 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLVertexPointerProc)(GrGLint size, GrGLenum type, GrGLsizei stride, const GrGLvoid* pointer);
193 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLViewportProc)(GrGLint x, GrGLint y, GrGLsizei width, GrGLsizei height);
twiz@google.com59a190b2011-03-14 21:23:01 +0000194
195 // FBO Extension Functions
twiz@google.com0f31ca72011-03-18 17:38:11 +0000196 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLBindFramebufferProc)(GrGLenum target, GrGLuint framebuffer);
197 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLBindRenderbufferProc)(GrGLenum target, GrGLuint renderbuffer);
198 typedef GrGLenum (GR_GL_FUNCTION_TYPE *GrGLCheckFramebufferStatusProc)(GrGLenum target);
199 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLDeleteFramebuffersProc)(GrGLsizei n, const GrGLuint *framebuffers);
200 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLDeleteRenderbuffersProc)(GrGLsizei n, const GrGLuint *renderbuffers);
201 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLFramebufferRenderbufferProc)(GrGLenum target, GrGLenum attachment, GrGLenum renderbuffertarget, GrGLuint renderbuffer);
202 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLFramebufferTexture2DProc)(GrGLenum target, GrGLenum attachment, GrGLenum textarget, GrGLuint texture, GrGLint level);
203 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLGenFramebuffersProc)(GrGLsizei n, GrGLuint *framebuffers);
204 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLGenRenderbuffersProc)(GrGLsizei n, GrGLuint *renderbuffers);
bsalomon@google.comcee661a2011-07-26 12:32:36 +0000205 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLGetFramebufferAttachmentParameterivProc)(GrGLenum target, GrGLenum attachment, GrGLenum pname, GrGLint* params);
206 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLGetRenderbufferParameterivProc)(GrGLenum target, GrGLenum pname, GrGLint* params);
twiz@google.com0f31ca72011-03-18 17:38:11 +0000207 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLRenderbufferStorageProc)(GrGLenum target, GrGLenum internalformat, GrGLsizei width, GrGLsizei height);
twiz@google.com59a190b2011-03-14 21:23:01 +0000208
209 // Multisampling Extension Functions
210 // same prototype for ARB_FBO, EXT_FBO, GL 3.0, & Apple ES extension
twiz@google.com0f31ca72011-03-18 17:38:11 +0000211 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLRenderbufferStorageMultisampleProc)(GrGLenum target, GrGLsizei samples, GrGLenum internalformat, GrGLsizei width, GrGLsizei height);
twiz@google.com59a190b2011-03-14 21:23:01 +0000212 // desktop: ext_fbo_blit, arb_fbo, gl 3.0
twiz@google.com0f31ca72011-03-18 17:38:11 +0000213 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLBlitFramebufferProc)(GrGLint srcX0, GrGLint srcY0, GrGLint srcX1, GrGLint srcY1, GrGLint dstX0, GrGLint dstY0, GrGLint dstX1, GrGLint dstY1, GrGLbitfield mask, GrGLenum filter);
twiz@google.com59a190b2011-03-14 21:23:01 +0000214 // apple's es extension
twiz@google.com0f31ca72011-03-18 17:38:11 +0000215 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLResolveMultisampleFramebufferProc)();
twiz@google.com59a190b2011-03-14 21:23:01 +0000216
twiz@google.com59a190b2011-03-14 21:23:01 +0000217 // Buffer mapping (extension in ES).
twiz@google.com0f31ca72011-03-18 17:38:11 +0000218 typedef GrGLvoid* (GR_GL_FUNCTION_TYPE *GrGLMapBufferProc)(GrGLenum target, GrGLenum access);
219 typedef GrGLboolean (GR_GL_FUNCTION_TYPE *GrGLUnmapBufferProc)(GrGLenum target);
bsalomon@google.com271cffc2011-05-20 14:13:56 +0000220
221 // Dual source blending
222 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLBindFragDataLocationIndexedProc)(GrGLuint program, GrGLuint colorNumber, GrGLuint index, const GrGLchar * name);
bsalomon@google.combf2a4692011-05-04 12:35:39 +0000223} // extern "C"
224
bsalomon@google.com56bfc5a2011-09-01 13:28:16 +0000225#if GR_GL_PER_GL_FUNC_CALLBACK
226typedef void (*GrGLInterfaceCallbackProc)(const GrGLInterface*);
227typedef intptr_t GrGLInterfaceCallbackData;
228#endif
229
230
tomhudson@google.come67bd3f2011-06-16 14:08:04 +0000231enum GrGLCapability {
232 kProbe_GrGLCapability = -1
tomhudson@google.com30e4bb62011-06-15 19:41:46 +0000233};
234
bsalomon@google.combf2a4692011-05-04 12:35:39 +0000235/*
236 * The following interface exports the OpenGL entry points used by the system.
237 * Use of OpenGL calls is disallowed. All calls should be invoked through
238 * the global instance of this struct, defined above.
239 *
240 * IMPORTANT NOTE: The OpenGL entry points exposed here include both core GL
241 * functions, and extensions. The system assumes that the address of the
242 * extension pointer will be valid across contexts.
243 */
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000244struct GR_API GrGLInterface : public GrRefCnt {
245
246 GrGLInterface();
247
bsalomon@google.combf2a4692011-05-04 12:35:39 +0000248 bool validate(GrEngine engine) const;
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000249 bool supportsDesktop() const {
250 return 0 != (kDesktop_GrGLBinding & fBindingsExported);
251 }
252 bool supportsES1() const {
253 return 0 != (kES1_GrGLBinding & fBindingsExported);
254 }
255 bool supportsES2() const {
256 return 0 != (kES2_GrGLBinding & fBindingsExported);
257 }
258 bool supportsES() const {
259 return 0 != ((kES1_GrGLBinding | kES2_GrGLBinding) &
260 fBindingsExported);
261 }
twiz@google.com59a190b2011-03-14 21:23:01 +0000262
twiz@google.comb65e0cb2011-03-18 20:41:44 +0000263 // Indicator variable specifying the type of GL implementation
264 // exported: GLES{1|2} or Desktop.
265 GrGLBinding fBindingsExported;
266
tomhudson@google.com747bf292011-06-14 18:16:52 +0000267 /// Does this GL support NPOT textures on FBOs?
tomhudson@google.come67bd3f2011-06-16 14:08:04 +0000268 /// boolean value, or kProbe_GrGLCapability to probe (slowly) at context creation.
tomhudson@google.com747bf292011-06-14 18:16:52 +0000269 int fNPOTRenderTargetSupport;
270
271 /// Some GL implementations (PowerVR SGX devices like the iPhone 4)
272 /// have restrictions on the size of small render targets.
tomhudson@google.come67bd3f2011-06-16 14:08:04 +0000273 /// kProbe_GrGLCapability to probe (slowly) at context creation.
tomhudson@google.com747bf292011-06-14 18:16:52 +0000274 int fMinRenderTargetHeight;
275 int fMinRenderTargetWidth;
276
twiz@google.com59a190b2011-03-14 21:23:01 +0000277 GrGLActiveTextureProc fActiveTexture;
278 GrGLAttachShaderProc fAttachShader;
279 GrGLBindAttribLocationProc fBindAttribLocation;
280 GrGLBindBufferProc fBindBuffer;
bsalomon@google.combc5cf512011-09-21 16:21:07 +0000281 GrGLBindFragDataLocationProc fBindFragDataLocation;
twiz@google.com59a190b2011-03-14 21:23:01 +0000282 GrGLBindTextureProc fBindTexture;
bsalomon@google.com080773c2011-03-15 19:09:25 +0000283 GrGLBlendColorProc fBlendColor;
bsalomon@google.comf987d1b2011-04-04 17:13:52 +0000284 GrGLBlendFuncProc fBlendFunc;
twiz@google.com59a190b2011-03-14 21:23:01 +0000285 GrGLBufferDataProc fBufferData;
286 GrGLBufferSubDataProc fBufferSubData;
287 GrGLClearProc fClear;
288 GrGLClearColorProc fClearColor;
289 GrGLClearStencilProc fClearStencil;
290 GrGLClientActiveTextureProc fClientActiveTexture;
291 GrGLColor4ubProc fColor4ub;
292 GrGLColorMaskProc fColorMask;
293 GrGLColorPointerProc fColorPointer;
294 GrGLCompileShaderProc fCompileShader;
295 GrGLCompressedTexImage2DProc fCompressedTexImage2D;
296 GrGLCreateProgramProc fCreateProgram;
297 GrGLCreateShaderProc fCreateShader;
298 GrGLCullFaceProc fCullFace;
299 GrGLDeleteBuffersProc fDeleteBuffers;
300 GrGLDeleteProgramProc fDeleteProgram;
301 GrGLDeleteShaderProc fDeleteShader;
302 GrGLDeleteTexturesProc fDeleteTextures;
303 GrGLDepthMaskProc fDepthMask;
304 GrGLDisableProc fDisable;
305 GrGLDisableClientStateProc fDisableClientState;
306 GrGLDisableVertexAttribArrayProc fDisableVertexAttribArray;
307 GrGLDrawArraysProc fDrawArrays;
bsalomon@google.comd32c5f52011-08-02 19:29:03 +0000308 GrGLDrawBufferProc fDrawBuffer;
309 GrGLDrawBuffersProc fDrawBuffers;
twiz@google.com59a190b2011-03-14 21:23:01 +0000310 GrGLDrawElementsProc fDrawElements;
311 GrGLEnableProc fEnable;
312 GrGLEnableClientStateProc fEnableClientState;
313 GrGLEnableVertexAttribArrayProc fEnableVertexAttribArray;
314 GrGLFrontFaceProc fFrontFace;
315 GrGLGenBuffersProc fGenBuffers;
316 GrGLGenTexturesProc fGenTextures;
317 GrGLGetBufferParameterivProc fGetBufferParameteriv;
318 GrGLGetErrorProc fGetError;
319 GrGLGetIntegervProc fGetIntegerv;
320 GrGLGetProgramInfoLogProc fGetProgramInfoLog;
321 GrGLGetProgramivProc fGetProgramiv;
322 GrGLGetShaderInfoLogProc fGetShaderInfoLog;
323 GrGLGetShaderivProc fGetShaderiv;
324 GrGLGetStringProc fGetString;
bsalomon@google.comcee661a2011-07-26 12:32:36 +0000325 GrGLGetTexLevelParameteriv fGetTexLevelParameteriv;
twiz@google.com59a190b2011-03-14 21:23:01 +0000326 GrGLGetUniformLocationProc fGetUniformLocation;
327 GrGLLineWidthProc fLineWidth;
328 GrGLLinkProgramProc fLinkProgram;
329 GrGLLoadMatrixfProc fLoadMatrixf;
330 GrGLMatrixModeProc fMatrixMode;
331 GrGLPixelStoreiProc fPixelStorei;
332 GrGLPointSizeProc fPointSize;
bsalomon@google.comc49d66b2011-08-03 14:22:30 +0000333 GrGLReadBufferProc fReadBuffer;
twiz@google.com59a190b2011-03-14 21:23:01 +0000334 GrGLReadPixelsProc fReadPixels;
335 GrGLScissorProc fScissor;
336 GrGLShadeModelProc fShadeModel;
337 GrGLShaderSourceProc fShaderSource;
338 GrGLStencilFuncProc fStencilFunc;
339 GrGLStencilFuncSeparateProc fStencilFuncSeparate;
340 GrGLStencilMaskProc fStencilMask;
341 GrGLStencilMaskSeparateProc fStencilMaskSeparate;
342 GrGLStencilOpProc fStencilOp;
343 GrGLStencilOpSeparateProc fStencilOpSeparate;
344 GrGLTexCoordPointerProc fTexCoordPointer;
345 GrGLTexEnviProc fTexEnvi;
346 GrGLTexImage2DProc fTexImage2D;
347 GrGLTexParameteriProc fTexParameteri;
348 GrGLTexSubImage2DProc fTexSubImage2D;
bsalomon@google.combf2a4692011-05-04 12:35:39 +0000349 GrGLUniform1fProc fUniform1f;
twiz@google.com59a190b2011-03-14 21:23:01 +0000350 GrGLUniform1iProc fUniform1i;
bsalomon@google.combf2a4692011-05-04 12:35:39 +0000351 GrGLUniform1fvProc fUniform1fv;
352 GrGLUniform1ivProc fUniform1iv;
353 GrGLUniform2fProc fUniform2f;
354 GrGLUniform2iProc fUniform2i;
355 GrGLUniform2fvProc fUniform2fv;
356 GrGLUniform2ivProc fUniform2iv;
357 GrGLUniform3fProc fUniform3f;
358 GrGLUniform3iProc fUniform3i;
359 GrGLUniform3fvProc fUniform3fv;
360 GrGLUniform3ivProc fUniform3iv;
361 GrGLUniform4fProc fUniform4f;
362 GrGLUniform4iProc fUniform4i;
twiz@google.com59a190b2011-03-14 21:23:01 +0000363 GrGLUniform4fvProc fUniform4fv;
bsalomon@google.combf2a4692011-05-04 12:35:39 +0000364 GrGLUniform4ivProc fUniform4iv;
365 GrGLUniformMatrix2fvProc fUniformMatrix2fv;
twiz@google.com59a190b2011-03-14 21:23:01 +0000366 GrGLUniformMatrix3fvProc fUniformMatrix3fv;
bsalomon@google.combf2a4692011-05-04 12:35:39 +0000367 GrGLUniformMatrix4fvProc fUniformMatrix4fv;
twiz@google.com59a190b2011-03-14 21:23:01 +0000368 GrGLUseProgramProc fUseProgram;
369 GrGLVertexAttrib4fvProc fVertexAttrib4fv;
370 GrGLVertexAttribPointerProc fVertexAttribPointer;
371 GrGLVertexPointerProc fVertexPointer;
372 GrGLViewportProc fViewport;
373
374 // FBO Extension Functions
375 GrGLBindFramebufferProc fBindFramebuffer;
376 GrGLBindRenderbufferProc fBindRenderbuffer;
377 GrGLCheckFramebufferStatusProc fCheckFramebufferStatus;
378 GrGLDeleteFramebuffersProc fDeleteFramebuffers;
379 GrGLDeleteRenderbuffersProc fDeleteRenderbuffers;
380 GrGLFramebufferRenderbufferProc fFramebufferRenderbuffer;
381 GrGLFramebufferTexture2DProc fFramebufferTexture2D;
382 GrGLGenFramebuffersProc fGenFramebuffers;
383 GrGLGenRenderbuffersProc fGenRenderbuffers;
bsalomon@google.comcee661a2011-07-26 12:32:36 +0000384 GrGLGetFramebufferAttachmentParameterivProc fGetFramebufferAttachmentParameteriv;
385 GrGLGetRenderbufferParameterivProc fGetRenderbufferParameteriv;
twiz@google.com59a190b2011-03-14 21:23:01 +0000386 GrGLRenderbufferStorageProc fRenderbufferStorage;
387
388 // Multisampling Extension Functions
389 // same prototype for ARB_FBO, EXT_FBO, GL 3.0, & Apple ES extension
390 GrGLRenderbufferStorageMultisampleProc fRenderbufferStorageMultisample;
391 // desktop: ext_fbo_blit, arb_fbo, gl 3.0
392 GrGLBlitFramebufferProc fBlitFramebuffer;
393 // apple's es extension
394 GrGLResolveMultisampleFramebufferProc fResolveMultisampleFramebuffer;
395
twiz@google.com59a190b2011-03-14 21:23:01 +0000396 // Buffer mapping (extension in ES).
397 GrGLMapBufferProc fMapBuffer;
398 GrGLUnmapBufferProc fUnmapBuffer;
bsalomon@google.comf987d1b2011-04-04 17:13:52 +0000399
bsalomon@google.com271cffc2011-05-20 14:13:56 +0000400 // Dual Source Blending
401 GrGLBindFragDataLocationIndexedProc fBindFragDataLocationIndexed;
402
bsalomon@google.com56bfc5a2011-09-01 13:28:16 +0000403 // Per-GL func callback
404#if GR_GL_PER_GL_FUNC_CALLBACK
405 GrGLInterfaceCallbackProc fCallback;
406 GrGLInterfaceCallbackData fCallbackData;
407#endif
408
bsalomon@google.combf2a4692011-05-04 12:35:39 +0000409private:
410 bool validateShaderFunctions() const;
411 bool validateFixedFunctions() const;
412};
twiz@google.com59a190b2011-03-14 21:23:01 +0000413
414#endif