blob: 5d22f95d9989cc231fe4b1823ec27a8577cf8cfd [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.com373a6632011-10-19 20:43:20 +000041bool GrGLHasExtension(const GrGLInterface*, const char* ext);
bsalomon@google.comc82b8892011-09-22 14:10:33 +000042GrGLVersion 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
bsalomon@google.com57f5d982011-10-24 21:17:53 +000072/**
73 * Creates a GrGLInterface for a "native" GL context (e.g. WGL on windows,
74 * GLX on linux, AGL on Mac). On platforms that have context-specific function
75 * pointers for GL extensions (e.g. windows) the returned interface is only
76 * valid for the context that was current at creation.
77 */
bsalomon@google.com373a6632011-10-19 20:43:20 +000078const GrGLInterface* GrGLCreateNativeInterface();
79
bsalomon@google.com57f5d982011-10-24 21:17:53 +000080/**
81 * Creates a GrGLInterface for an OSMesa context.
82 */
bsalomon@google.com373a6632011-10-19 20:43:20 +000083const GrGLInterface* GrGLCreateMesaInterface();
84
bsalomon@google.com74913722011-10-27 20:44:19 +000085/**
86 * Creates a null GrGLInterface that doesn't draw anything. Used for measuring
87 * CPU overhead.
88 */
89const GrGLInterface* GrGLCreateNullInterface();
90
twiz@google.com0f31ca72011-03-18 17:38:11 +000091typedef unsigned int GrGLenum;
92typedef unsigned char GrGLboolean;
93typedef unsigned int GrGLbitfield;
94typedef signed char GrGLbyte;
bsalomon@google.com271cffc2011-05-20 14:13:56 +000095typedef char GrGLchar;
twiz@google.com0f31ca72011-03-18 17:38:11 +000096typedef short GrGLshort;
97typedef int GrGLint;
98typedef int GrGLsizei;
bsalomon@google.com373a6632011-10-19 20:43:20 +000099typedef int64_t GrGLint64;
twiz@google.com0f31ca72011-03-18 17:38:11 +0000100typedef unsigned char GrGLubyte;
101typedef unsigned short GrGLushort;
102typedef unsigned int GrGLuint;
bsalomon@google.com373a6632011-10-19 20:43:20 +0000103typedef uint64_t GrGLuint64;
twiz@google.com0f31ca72011-03-18 17:38:11 +0000104typedef float GrGLfloat;
105typedef float GrGLclampf;
106typedef double GrGLdouble;
107typedef double GrGLclampd;
108typedef void GrGLvoid;
bsalomon@google.comf987d1b2011-04-04 17:13:52 +0000109typedef long GrGLintptr;
110typedef long GrGLsizeiptr;
twiz@google.com0f31ca72011-03-18 17:38:11 +0000111
twiz@google.comb65e0cb2011-03-18 20:41:44 +0000112enum GrGLBinding {
113 kDesktop_GrGLBinding = 0x01,
114 kES1_GrGLBinding = 0x02,
115 kES2_GrGLBinding = 0x04
116};
117
twiz@google.com59a190b2011-03-14 21:23:01 +0000118extern "C" {
twiz@google.com0f31ca72011-03-18 17:38:11 +0000119 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLActiveTextureProc)(GrGLenum texture);
120 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLAttachShaderProc)(GrGLuint program, GrGLuint shader);
bsalomon@google.com373a6632011-10-19 20:43:20 +0000121 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLBeginQueryProc)(GrGLenum target, GrGLuint id);
twiz@google.com0f31ca72011-03-18 17:38:11 +0000122 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLBindAttribLocationProc)(GrGLuint program, GrGLuint index, const char* name);
123 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLBindBufferProc)(GrGLenum target, GrGLuint buffer);
124 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLBindTextureProc)(GrGLenum target, GrGLuint texture);
125 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLBlendColorProc)(GrGLclampf red, GrGLclampf green, GrGLclampf blue, GrGLclampf alpha);
bsalomon@google.combc5cf512011-09-21 16:21:07 +0000126 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLBindFragDataLocationProc)(GrGLuint program, GrGLuint colorNumber, const GrGLchar* name);
twiz@google.com0f31ca72011-03-18 17:38:11 +0000127 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLBlendFuncProc)(GrGLenum sfactor, GrGLenum dfactor);
bsalomon@google.comf987d1b2011-04-04 17:13:52 +0000128 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLBufferDataProc)(GrGLenum target, GrGLsizeiptr size, const GrGLvoid* data, GrGLenum usage);
129 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLBufferSubDataProc)(GrGLenum target, GrGLintptr offset, GrGLsizeiptr size, const GrGLvoid* data);
twiz@google.com0f31ca72011-03-18 17:38:11 +0000130 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLClearProc)(GrGLbitfield mask);
131 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLClearColorProc)(GrGLclampf red, GrGLclampf green, GrGLclampf blue, GrGLclampf alpha);
132 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLClearStencilProc)(GrGLint s);
133 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLClientActiveTextureProc)(GrGLenum texture);
134 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLColor4ubProc)(GrGLubyte red, GrGLubyte green, GrGLubyte blue, GrGLubyte alpha);
135 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLColorMaskProc)(GrGLboolean red, GrGLboolean green, GrGLboolean blue, GrGLboolean alpha);
136 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLColorPointerProc)(GrGLint size, GrGLenum type, GrGLsizei stride, const GrGLvoid* pointer);
137 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLCompileShaderProc)(GrGLuint shader);
138 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLCompressedTexImage2DProc)(GrGLenum target, GrGLint level, GrGLenum internalformat, GrGLsizei width, GrGLsizei height, GrGLint border, GrGLsizei imageSize, const GrGLvoid* data);
139 typedef GrGLuint (GR_GL_FUNCTION_TYPE *GrGLCreateProgramProc)(void);
140 typedef GrGLuint (GR_GL_FUNCTION_TYPE *GrGLCreateShaderProc)(GrGLenum type);
141 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLCullFaceProc)(GrGLenum mode);
142 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLDeleteBuffersProc)(GrGLsizei n, const GrGLuint* buffers);
143 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLDeleteProgramProc)(GrGLuint program);
bsalomon@google.com373a6632011-10-19 20:43:20 +0000144 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLDeleteQueriesProc)(GrGLsizei n, const GrGLuint *ids);
twiz@google.com0f31ca72011-03-18 17:38:11 +0000145 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLDeleteShaderProc)(GrGLuint shader);
146 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLDeleteTexturesProc)(GrGLsizei n, const GrGLuint* textures);
147 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLDepthMaskProc)(GrGLboolean flag);
148 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLDisableProc)(GrGLenum cap);
149 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLDisableClientStateProc)(GrGLenum array);
150 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLDisableVertexAttribArrayProc)(GrGLuint index);
151 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLDrawArraysProc)(GrGLenum mode, GrGLint first, GrGLsizei count);
bsalomon@google.comd32c5f52011-08-02 19:29:03 +0000152 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLDrawBufferProc)(GrGLenum mode);
153 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLDrawBuffersProc)(GrGLsizei n, const GrGLenum* bufs);
twiz@google.com0f31ca72011-03-18 17:38:11 +0000154 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLDrawElementsProc)(GrGLenum mode, GrGLsizei count, GrGLenum type, const GrGLvoid* indices);
155 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLEnableProc)(GrGLenum cap);
156 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLEnableClientStateProc)(GrGLenum cap);
157 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLEnableVertexAttribArrayProc)(GrGLuint index);
bsalomon@google.com373a6632011-10-19 20:43:20 +0000158 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLEndQueryProc)(GrGLenum target);
159 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLFinishProc)();
160 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLFlushProc)();
twiz@google.com0f31ca72011-03-18 17:38:11 +0000161 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLFrontFaceProc)(GrGLenum mode);
162 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLGenBuffersProc)(GrGLsizei n, GrGLuint* buffers);
bsalomon@google.com373a6632011-10-19 20:43:20 +0000163 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLGenQueriesProc)(GrGLsizei n, GrGLuint *ids);
twiz@google.com0f31ca72011-03-18 17:38:11 +0000164 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLGenTexturesProc)(GrGLsizei n, GrGLuint* textures);
165 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLGetBufferParameterivProc)(GrGLenum target, GrGLenum pname, GrGLint* params);
bsalomon@google.com373a6632011-10-19 20:43:20 +0000166 typedef GrGLenum (GR_GL_FUNCTION_TYPE *GrGLGetErrorProc)();
twiz@google.com0f31ca72011-03-18 17:38:11 +0000167 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLGetIntegervProc)(GrGLenum pname, GrGLint* params);
168 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLGetProgramInfoLogProc)(GrGLuint program, GrGLsizei bufsize, GrGLsizei* length, char* infolog);
169 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLGetProgramivProc)(GrGLuint program, GrGLenum pname, GrGLint* params);
bsalomon@google.com373a6632011-10-19 20:43:20 +0000170 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLGetQueryivProc)(GrGLenum GLtarget, GrGLenum pname, GrGLint *params);
171 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLGetQueryObjecti64vProc)(GrGLuint id, GrGLenum pname, GrGLint64 *params);
172 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLGetQueryObjectivProc)(GrGLuint id, GrGLenum pname, GrGLint *params);
173 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLGetQueryObjectui64vProc)(GrGLuint id, GrGLenum pname, GrGLuint64 *params);
174 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLGetQueryObjectuivProc)(GrGLuint id, GrGLenum pname, GrGLuint *params);
twiz@google.com0f31ca72011-03-18 17:38:11 +0000175 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLGetShaderInfoLogProc)(GrGLuint shader, GrGLsizei bufsize, GrGLsizei* length, char* infolog);
176 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLGetShaderivProc)(GrGLuint shader, GrGLenum pname, GrGLint* params);
177 typedef const GrGLubyte* (GR_GL_FUNCTION_TYPE *GrGLGetStringProc)(GrGLenum name);
bsalomon@google.com373a6632011-10-19 20:43:20 +0000178 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLGetTexLevelParameterivProc)(GrGLenum target, GrGLint level, GrGLenum pname, GrGLint* params);
twiz@google.com0f31ca72011-03-18 17:38:11 +0000179 typedef GrGLint (GR_GL_FUNCTION_TYPE *GrGLGetUniformLocationProc)(GrGLuint program, const char* name);
180 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLLineWidthProc)(GrGLfloat width);
181 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLLinkProgramProc)(GrGLuint program);
182 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLLoadMatrixfProc)(const GrGLfloat* m);
183 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLMatrixModeProc)(GrGLenum mode);
184 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLPixelStoreiProc)(GrGLenum pname, GrGLint param);
185 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLPointSizeProc)(GrGLfloat size);
bsalomon@google.com373a6632011-10-19 20:43:20 +0000186 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLQueryCounterProc)(GrGLuint id, GrGLenum target);
bsalomon@google.comc49d66b2011-08-03 14:22:30 +0000187 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLReadBufferProc)(GrGLenum src);
twiz@google.com0f31ca72011-03-18 17:38:11 +0000188 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLReadPixelsProc)(GrGLint x, GrGLint y, GrGLsizei width, GrGLsizei height, GrGLenum format, GrGLenum type, GrGLvoid* pixels);
189 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLScissorProc)(GrGLint x, GrGLint y, GrGLsizei width, GrGLsizei height);
190 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLShadeModelProc)(GrGLenum mode);
191 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLShaderSourceProc)(GrGLuint shader, GrGLsizei count, const char** str, const GrGLint* length);
192 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLStencilFuncProc)(GrGLenum func, GrGLint ref, GrGLuint mask);
193 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLStencilFuncSeparateProc)(GrGLenum face, GrGLenum func, GrGLint ref, GrGLuint mask);
194 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLStencilMaskProc)(GrGLuint mask);
195 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLStencilMaskSeparateProc)(GrGLenum face, GrGLuint mask);
196 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLStencilOpProc)(GrGLenum fail, GrGLenum zfail, GrGLenum zpass);
197 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLStencilOpSeparateProc)(GrGLenum face, GrGLenum fail, GrGLenum zfail, GrGLenum zpass);
198 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLTexCoordPointerProc)(GrGLint size, GrGLenum type, GrGLsizei stride, const GrGLvoid* pointer);
199 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLTexEnviProc)(GrGLenum target, GrGLenum pname, GrGLint param);
200 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);
201 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLTexParameteriProc)(GrGLenum target, GrGLenum pname, GrGLint param);
202 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 +0000203 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLUniform1fProc)(GrGLint location, GrGLfloat v0);
204 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLUniform1iProc)(GrGLint location, GrGLint v0);
twiz@google.com0f31ca72011-03-18 17:38:11 +0000205 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLUniform1fvProc)(GrGLint location, GrGLsizei count, const GrGLfloat* v);
bsalomon@google.combf2a4692011-05-04 12:35:39 +0000206 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLUniform1ivProc)(GrGLint location, GrGLsizei count, const GrGLint* v);
207 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLUniform2fProc)(GrGLint location, GrGLfloat v0, GrGLfloat v1);
208 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLUniform2iProc)(GrGLint location, GrGLint v0, GrGLint v1);
209 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLUniform2fvProc)(GrGLint location, GrGLsizei count, const GrGLfloat* v);
210 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLUniform2ivProc)(GrGLint location, GrGLsizei count, const GrGLint* v);
211 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLUniform3fProc)(GrGLint location, GrGLfloat v0, GrGLfloat v1, GrGLfloat v2);
212 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLUniform3iProc)(GrGLint location, GrGLint v0, GrGLint v1, GrGLint v2);
213 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLUniform3fvProc)(GrGLint location, GrGLsizei count, const GrGLfloat* v);
214 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLUniform3ivProc)(GrGLint location, GrGLsizei count, const GrGLint* v);
215 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLUniform4fProc)(GrGLint location, GrGLfloat v0, GrGLfloat v1, GrGLfloat v2, GrGLfloat v3);
216 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 +0000217 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLUniform4fvProc)(GrGLint location, GrGLsizei count, const GrGLfloat* v);
bsalomon@google.combf2a4692011-05-04 12:35:39 +0000218 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLUniform4ivProc)(GrGLint location, GrGLsizei count, const GrGLint* v);
219 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLUniformMatrix2fvProc)(GrGLint location, GrGLsizei count, GrGLboolean transpose, const GrGLfloat* value);
twiz@google.com0f31ca72011-03-18 17:38:11 +0000220 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLUniformMatrix3fvProc)(GrGLint location, GrGLsizei count, GrGLboolean transpose, const GrGLfloat* value);
bsalomon@google.combf2a4692011-05-04 12:35:39 +0000221 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLUniformMatrix4fvProc)(GrGLint location, GrGLsizei count, GrGLboolean transpose, const GrGLfloat* value);
twiz@google.com0f31ca72011-03-18 17:38:11 +0000222 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLUseProgramProc)(GrGLuint program);
223 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLVertexAttrib4fvProc)(GrGLuint indx, const GrGLfloat* values);
224 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLVertexAttribPointerProc)(GrGLuint indx, GrGLint size, GrGLenum type, GrGLboolean normalized, GrGLsizei stride, const GrGLvoid* ptr);
225 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLVertexPointerProc)(GrGLint size, GrGLenum type, GrGLsizei stride, const GrGLvoid* pointer);
226 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLViewportProc)(GrGLint x, GrGLint y, GrGLsizei width, GrGLsizei height);
twiz@google.com59a190b2011-03-14 21:23:01 +0000227
228 // FBO Extension Functions
twiz@google.com0f31ca72011-03-18 17:38:11 +0000229 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLBindFramebufferProc)(GrGLenum target, GrGLuint framebuffer);
230 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLBindRenderbufferProc)(GrGLenum target, GrGLuint renderbuffer);
231 typedef GrGLenum (GR_GL_FUNCTION_TYPE *GrGLCheckFramebufferStatusProc)(GrGLenum target);
232 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLDeleteFramebuffersProc)(GrGLsizei n, const GrGLuint *framebuffers);
233 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLDeleteRenderbuffersProc)(GrGLsizei n, const GrGLuint *renderbuffers);
234 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLFramebufferRenderbufferProc)(GrGLenum target, GrGLenum attachment, GrGLenum renderbuffertarget, GrGLuint renderbuffer);
235 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLFramebufferTexture2DProc)(GrGLenum target, GrGLenum attachment, GrGLenum textarget, GrGLuint texture, GrGLint level);
236 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLGenFramebuffersProc)(GrGLsizei n, GrGLuint *framebuffers);
237 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLGenRenderbuffersProc)(GrGLsizei n, GrGLuint *renderbuffers);
bsalomon@google.comcee661a2011-07-26 12:32:36 +0000238 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLGetFramebufferAttachmentParameterivProc)(GrGLenum target, GrGLenum attachment, GrGLenum pname, GrGLint* params);
239 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLGetRenderbufferParameterivProc)(GrGLenum target, GrGLenum pname, GrGLint* params);
twiz@google.com0f31ca72011-03-18 17:38:11 +0000240 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLRenderbufferStorageProc)(GrGLenum target, GrGLenum internalformat, GrGLsizei width, GrGLsizei height);
twiz@google.com59a190b2011-03-14 21:23:01 +0000241
242 // Multisampling Extension Functions
243 // same prototype for ARB_FBO, EXT_FBO, GL 3.0, & Apple ES extension
twiz@google.com0f31ca72011-03-18 17:38:11 +0000244 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 +0000245 // desktop: ext_fbo_blit, arb_fbo, gl 3.0
twiz@google.com0f31ca72011-03-18 17:38:11 +0000246 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 +0000247 // apple's es extension
twiz@google.com0f31ca72011-03-18 17:38:11 +0000248 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLResolveMultisampleFramebufferProc)();
twiz@google.com59a190b2011-03-14 21:23:01 +0000249
twiz@google.com59a190b2011-03-14 21:23:01 +0000250 // Buffer mapping (extension in ES).
twiz@google.com0f31ca72011-03-18 17:38:11 +0000251 typedef GrGLvoid* (GR_GL_FUNCTION_TYPE *GrGLMapBufferProc)(GrGLenum target, GrGLenum access);
252 typedef GrGLboolean (GR_GL_FUNCTION_TYPE *GrGLUnmapBufferProc)(GrGLenum target);
bsalomon@google.com271cffc2011-05-20 14:13:56 +0000253
254 // Dual source blending
255 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLBindFragDataLocationIndexedProc)(GrGLuint program, GrGLuint colorNumber, GrGLuint index, const GrGLchar * name);
bsalomon@google.combf2a4692011-05-04 12:35:39 +0000256} // extern "C"
257
bsalomon@google.com56bfc5a2011-09-01 13:28:16 +0000258#if GR_GL_PER_GL_FUNC_CALLBACK
259typedef void (*GrGLInterfaceCallbackProc)(const GrGLInterface*);
260typedef intptr_t GrGLInterfaceCallbackData;
261#endif
262
263
tomhudson@google.come67bd3f2011-06-16 14:08:04 +0000264enum GrGLCapability {
265 kProbe_GrGLCapability = -1
tomhudson@google.com30e4bb62011-06-15 19:41:46 +0000266};
267
bsalomon@google.combf2a4692011-05-04 12:35:39 +0000268/*
269 * The following interface exports the OpenGL entry points used by the system.
270 * Use of OpenGL calls is disallowed. All calls should be invoked through
271 * the global instance of this struct, defined above.
272 *
273 * IMPORTANT NOTE: The OpenGL entry points exposed here include both core GL
274 * functions, and extensions. The system assumes that the address of the
275 * extension pointer will be valid across contexts.
276 */
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000277struct GR_API GrGLInterface : public GrRefCnt {
278
279 GrGLInterface();
280
bsalomon@google.combf2a4692011-05-04 12:35:39 +0000281 bool validate(GrEngine engine) const;
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000282 bool supportsDesktop() const {
283 return 0 != (kDesktop_GrGLBinding & fBindingsExported);
284 }
285 bool supportsES1() const {
286 return 0 != (kES1_GrGLBinding & fBindingsExported);
287 }
288 bool supportsES2() const {
289 return 0 != (kES2_GrGLBinding & fBindingsExported);
290 }
291 bool supportsES() const {
292 return 0 != ((kES1_GrGLBinding | kES2_GrGLBinding) &
293 fBindingsExported);
294 }
twiz@google.com59a190b2011-03-14 21:23:01 +0000295
twiz@google.comb65e0cb2011-03-18 20:41:44 +0000296 // Indicator variable specifying the type of GL implementation
297 // exported: GLES{1|2} or Desktop.
298 GrGLBinding fBindingsExported;
299
tomhudson@google.com747bf292011-06-14 18:16:52 +0000300 /// Does this GL support NPOT textures on FBOs?
tomhudson@google.come67bd3f2011-06-16 14:08:04 +0000301 /// boolean value, or kProbe_GrGLCapability to probe (slowly) at context creation.
tomhudson@google.com747bf292011-06-14 18:16:52 +0000302 int fNPOTRenderTargetSupport;
303
304 /// Some GL implementations (PowerVR SGX devices like the iPhone 4)
305 /// have restrictions on the size of small render targets.
tomhudson@google.come67bd3f2011-06-16 14:08:04 +0000306 /// kProbe_GrGLCapability to probe (slowly) at context creation.
tomhudson@google.com747bf292011-06-14 18:16:52 +0000307 int fMinRenderTargetHeight;
308 int fMinRenderTargetWidth;
309
twiz@google.com59a190b2011-03-14 21:23:01 +0000310 GrGLActiveTextureProc fActiveTexture;
311 GrGLAttachShaderProc fAttachShader;
bsalomon@google.com373a6632011-10-19 20:43:20 +0000312 GrGLBeginQueryProc fBeginQuery;
twiz@google.com59a190b2011-03-14 21:23:01 +0000313 GrGLBindAttribLocationProc fBindAttribLocation;
314 GrGLBindBufferProc fBindBuffer;
bsalomon@google.combc5cf512011-09-21 16:21:07 +0000315 GrGLBindFragDataLocationProc fBindFragDataLocation;
twiz@google.com59a190b2011-03-14 21:23:01 +0000316 GrGLBindTextureProc fBindTexture;
bsalomon@google.com080773c2011-03-15 19:09:25 +0000317 GrGLBlendColorProc fBlendColor;
bsalomon@google.comf987d1b2011-04-04 17:13:52 +0000318 GrGLBlendFuncProc fBlendFunc;
twiz@google.com59a190b2011-03-14 21:23:01 +0000319 GrGLBufferDataProc fBufferData;
320 GrGLBufferSubDataProc fBufferSubData;
321 GrGLClearProc fClear;
322 GrGLClearColorProc fClearColor;
323 GrGLClearStencilProc fClearStencil;
324 GrGLClientActiveTextureProc fClientActiveTexture;
325 GrGLColor4ubProc fColor4ub;
326 GrGLColorMaskProc fColorMask;
327 GrGLColorPointerProc fColorPointer;
328 GrGLCompileShaderProc fCompileShader;
329 GrGLCompressedTexImage2DProc fCompressedTexImage2D;
330 GrGLCreateProgramProc fCreateProgram;
331 GrGLCreateShaderProc fCreateShader;
332 GrGLCullFaceProc fCullFace;
333 GrGLDeleteBuffersProc fDeleteBuffers;
334 GrGLDeleteProgramProc fDeleteProgram;
bsalomon@google.com373a6632011-10-19 20:43:20 +0000335 GrGLDeleteQueriesProc fDeleteQueries;
twiz@google.com59a190b2011-03-14 21:23:01 +0000336 GrGLDeleteShaderProc fDeleteShader;
337 GrGLDeleteTexturesProc fDeleteTextures;
338 GrGLDepthMaskProc fDepthMask;
339 GrGLDisableProc fDisable;
340 GrGLDisableClientStateProc fDisableClientState;
341 GrGLDisableVertexAttribArrayProc fDisableVertexAttribArray;
342 GrGLDrawArraysProc fDrawArrays;
bsalomon@google.comd32c5f52011-08-02 19:29:03 +0000343 GrGLDrawBufferProc fDrawBuffer;
344 GrGLDrawBuffersProc fDrawBuffers;
twiz@google.com59a190b2011-03-14 21:23:01 +0000345 GrGLDrawElementsProc fDrawElements;
346 GrGLEnableProc fEnable;
347 GrGLEnableClientStateProc fEnableClientState;
348 GrGLEnableVertexAttribArrayProc fEnableVertexAttribArray;
bsalomon@google.com373a6632011-10-19 20:43:20 +0000349 GrGLEndQueryProc fEndQuery;
350 GrGLFinishProc fFinish;
351 GrGLFlushProc fFlush;
twiz@google.com59a190b2011-03-14 21:23:01 +0000352 GrGLFrontFaceProc fFrontFace;
353 GrGLGenBuffersProc fGenBuffers;
bsalomon@google.com373a6632011-10-19 20:43:20 +0000354 GrGLGenQueriesProc fGenQueries;
twiz@google.com59a190b2011-03-14 21:23:01 +0000355 GrGLGenTexturesProc fGenTextures;
356 GrGLGetBufferParameterivProc fGetBufferParameteriv;
357 GrGLGetErrorProc fGetError;
358 GrGLGetIntegervProc fGetIntegerv;
bsalomon@google.com373a6632011-10-19 20:43:20 +0000359 GrGLGetQueryObjecti64vProc fGetQueryObjecti64v;
360 GrGLGetQueryObjectivProc fGetQueryObjectiv;
361 GrGLGetQueryObjectui64vProc fGetQueryObjectui64v;
362 GrGLGetQueryObjectuivProc fGetQueryObjectuiv;
363 GrGLGetQueryivProc fGetQueryiv;
twiz@google.com59a190b2011-03-14 21:23:01 +0000364 GrGLGetProgramInfoLogProc fGetProgramInfoLog;
365 GrGLGetProgramivProc fGetProgramiv;
366 GrGLGetShaderInfoLogProc fGetShaderInfoLog;
367 GrGLGetShaderivProc fGetShaderiv;
368 GrGLGetStringProc fGetString;
bsalomon@google.com373a6632011-10-19 20:43:20 +0000369 GrGLGetTexLevelParameterivProc fGetTexLevelParameteriv;
twiz@google.com59a190b2011-03-14 21:23:01 +0000370 GrGLGetUniformLocationProc fGetUniformLocation;
371 GrGLLineWidthProc fLineWidth;
372 GrGLLinkProgramProc fLinkProgram;
373 GrGLLoadMatrixfProc fLoadMatrixf;
374 GrGLMatrixModeProc fMatrixMode;
375 GrGLPixelStoreiProc fPixelStorei;
376 GrGLPointSizeProc fPointSize;
bsalomon@google.com373a6632011-10-19 20:43:20 +0000377 GrGLQueryCounterProc fQueryCounter;
bsalomon@google.comc49d66b2011-08-03 14:22:30 +0000378 GrGLReadBufferProc fReadBuffer;
twiz@google.com59a190b2011-03-14 21:23:01 +0000379 GrGLReadPixelsProc fReadPixels;
380 GrGLScissorProc fScissor;
381 GrGLShadeModelProc fShadeModel;
382 GrGLShaderSourceProc fShaderSource;
383 GrGLStencilFuncProc fStencilFunc;
384 GrGLStencilFuncSeparateProc fStencilFuncSeparate;
385 GrGLStencilMaskProc fStencilMask;
386 GrGLStencilMaskSeparateProc fStencilMaskSeparate;
387 GrGLStencilOpProc fStencilOp;
388 GrGLStencilOpSeparateProc fStencilOpSeparate;
389 GrGLTexCoordPointerProc fTexCoordPointer;
390 GrGLTexEnviProc fTexEnvi;
391 GrGLTexImage2DProc fTexImage2D;
392 GrGLTexParameteriProc fTexParameteri;
393 GrGLTexSubImage2DProc fTexSubImage2D;
bsalomon@google.combf2a4692011-05-04 12:35:39 +0000394 GrGLUniform1fProc fUniform1f;
twiz@google.com59a190b2011-03-14 21:23:01 +0000395 GrGLUniform1iProc fUniform1i;
bsalomon@google.combf2a4692011-05-04 12:35:39 +0000396 GrGLUniform1fvProc fUniform1fv;
397 GrGLUniform1ivProc fUniform1iv;
398 GrGLUniform2fProc fUniform2f;
399 GrGLUniform2iProc fUniform2i;
400 GrGLUniform2fvProc fUniform2fv;
401 GrGLUniform2ivProc fUniform2iv;
402 GrGLUniform3fProc fUniform3f;
403 GrGLUniform3iProc fUniform3i;
404 GrGLUniform3fvProc fUniform3fv;
405 GrGLUniform3ivProc fUniform3iv;
406 GrGLUniform4fProc fUniform4f;
407 GrGLUniform4iProc fUniform4i;
twiz@google.com59a190b2011-03-14 21:23:01 +0000408 GrGLUniform4fvProc fUniform4fv;
bsalomon@google.combf2a4692011-05-04 12:35:39 +0000409 GrGLUniform4ivProc fUniform4iv;
410 GrGLUniformMatrix2fvProc fUniformMatrix2fv;
twiz@google.com59a190b2011-03-14 21:23:01 +0000411 GrGLUniformMatrix3fvProc fUniformMatrix3fv;
bsalomon@google.combf2a4692011-05-04 12:35:39 +0000412 GrGLUniformMatrix4fvProc fUniformMatrix4fv;
twiz@google.com59a190b2011-03-14 21:23:01 +0000413 GrGLUseProgramProc fUseProgram;
414 GrGLVertexAttrib4fvProc fVertexAttrib4fv;
415 GrGLVertexAttribPointerProc fVertexAttribPointer;
416 GrGLVertexPointerProc fVertexPointer;
417 GrGLViewportProc fViewport;
418
419 // FBO Extension Functions
420 GrGLBindFramebufferProc fBindFramebuffer;
421 GrGLBindRenderbufferProc fBindRenderbuffer;
422 GrGLCheckFramebufferStatusProc fCheckFramebufferStatus;
423 GrGLDeleteFramebuffersProc fDeleteFramebuffers;
424 GrGLDeleteRenderbuffersProc fDeleteRenderbuffers;
425 GrGLFramebufferRenderbufferProc fFramebufferRenderbuffer;
426 GrGLFramebufferTexture2DProc fFramebufferTexture2D;
427 GrGLGenFramebuffersProc fGenFramebuffers;
428 GrGLGenRenderbuffersProc fGenRenderbuffers;
bsalomon@google.comcee661a2011-07-26 12:32:36 +0000429 GrGLGetFramebufferAttachmentParameterivProc fGetFramebufferAttachmentParameteriv;
430 GrGLGetRenderbufferParameterivProc fGetRenderbufferParameteriv;
twiz@google.com59a190b2011-03-14 21:23:01 +0000431 GrGLRenderbufferStorageProc fRenderbufferStorage;
432
433 // Multisampling Extension Functions
434 // same prototype for ARB_FBO, EXT_FBO, GL 3.0, & Apple ES extension
435 GrGLRenderbufferStorageMultisampleProc fRenderbufferStorageMultisample;
436 // desktop: ext_fbo_blit, arb_fbo, gl 3.0
437 GrGLBlitFramebufferProc fBlitFramebuffer;
438 // apple's es extension
439 GrGLResolveMultisampleFramebufferProc fResolveMultisampleFramebuffer;
440
twiz@google.com59a190b2011-03-14 21:23:01 +0000441 // Buffer mapping (extension in ES).
442 GrGLMapBufferProc fMapBuffer;
443 GrGLUnmapBufferProc fUnmapBuffer;
bsalomon@google.comf987d1b2011-04-04 17:13:52 +0000444
bsalomon@google.com271cffc2011-05-20 14:13:56 +0000445 // Dual Source Blending
446 GrGLBindFragDataLocationIndexedProc fBindFragDataLocationIndexed;
447
bsalomon@google.com56bfc5a2011-09-01 13:28:16 +0000448 // Per-GL func callback
449#if GR_GL_PER_GL_FUNC_CALLBACK
450 GrGLInterfaceCallbackProc fCallback;
451 GrGLInterfaceCallbackData fCallbackData;
452#endif
453
bsalomon@google.combf2a4692011-05-04 12:35:39 +0000454private:
455 bool validateShaderFunctions() const;
456 bool validateFixedFunctions() const;
457};
twiz@google.com59a190b2011-03-14 21:23:01 +0000458
459#endif