2010-12-22 21:39:39 +00:00
|
|
|
|
2011-07-28 14:26:00 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2011 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
2010-12-22 21:39:39 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
2011-07-28 14:26:00 +00:00
|
|
|
|
2010-12-22 21:39:39 +00:00
|
|
|
#ifndef GrGLConfig_DEFINED
|
|
|
|
#define GrGLConfig_DEFINED
|
|
|
|
|
|
|
|
#include "GrTypes.h"
|
2011-03-18 17:38:11 +00:00
|
|
|
#include "GrGLDefines.h"
|
2010-12-22 21:39:39 +00:00
|
|
|
|
2011-03-18 20:41:44 +00:00
|
|
|
/**
|
2011-04-04 17:13:52 +00:00
|
|
|
* Optional GL config file.
|
2011-03-18 20:41:44 +00:00
|
|
|
*/
|
2011-04-04 17:13:52 +00:00
|
|
|
#ifdef GR_GL_CUSTOM_SETUP_HEADER
|
|
|
|
#include GR_GL_CUSTOM_SETUP_HEADER
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !defined(GR_GL_FUNCTION_TYPE)
|
|
|
|
#define GR_GL_FUNCTION_TYPE
|
|
|
|
#endif
|
2011-03-18 20:41:44 +00:00
|
|
|
|
2011-01-19 17:19:40 +00:00
|
|
|
/**
|
2011-02-17 21:47:25 +00:00
|
|
|
* The following are optional defines that can be enabled at the compiler
|
|
|
|
* command line, in a IDE project, in a GrUserConfig.h file, or in a GL custom
|
2011-04-04 17:13:52 +00:00
|
|
|
* file (if one is in use). If a GR_GL_CUSTOM_SETUP_HEADER is used they can
|
|
|
|
* also be placed there.
|
2011-02-11 14:07:02 +00:00
|
|
|
*
|
2011-02-17 21:47:25 +00:00
|
|
|
* GR_GL_LOG_CALLS: if 1 Gr can print every GL call using GrPrintf. Defaults to
|
2011-03-08 15:34:06 +00:00
|
|
|
* 0. Logging can be enabled and disabled at runtime using a debugger via to
|
2011-02-17 21:47:25 +00:00
|
|
|
* global gLogCallsGL. The initial value of gLogCallsGL is controlled by
|
|
|
|
* GR_GL_LOG_CALLS_START.
|
|
|
|
*
|
|
|
|
* GR_GL_LOG_CALLS_START: controls the initial value of gLogCallsGL when
|
|
|
|
* GR_GL_LOG_CALLS is 1. Defaults to 0.
|
|
|
|
*
|
|
|
|
* GR_GL_CHECK_ERROR: if enabled Gr can do a glGetError() after every GL call.
|
2011-03-08 15:34:06 +00:00
|
|
|
* Defaults to 1 if GR_DEBUG is set, otherwise 0. When GR_GL_CHECK_ERROR is 1
|
2011-02-17 21:47:25 +00:00
|
|
|
* this can be toggled in a debugger using the gCheckErrorGL global. The initial
|
|
|
|
* value of gCheckErrorGL is controlled by by GR_GL_CHECK_ERROR_START.
|
|
|
|
*
|
|
|
|
* GR_GL_CHECK_ERROR_START: controls the initial value of gCheckErrorGL
|
|
|
|
* when GR_GL_CHECK_ERROR is 1. Defaults to 1.
|
2011-04-19 21:15:09 +00:00
|
|
|
*
|
|
|
|
* GR_GL_NO_CONSTANT_ATTRIBUTES: if this evaluates to true then the GL backend
|
|
|
|
* will use uniforms instead of attributes in all cases when there is not
|
|
|
|
* per-vertex data. This is important when the underlying GL implementation
|
|
|
|
* doesn't actually support immediate style attribute values (e.g. when
|
|
|
|
* the GL stream is converted to DX as in ANGLE on Chrome). Defaults to 0.
|
|
|
|
*
|
|
|
|
* GR_GL_ATTRIBUTE_MATRICES: If changing uniforms is very expensive it may be
|
|
|
|
* faster to use vertex attributes for matrices (set via glVertexAttrib3fv).
|
|
|
|
* Setting this build flag enables this behavior. GR_GL_NO_CONSTANT_ATTRIBUTES
|
|
|
|
* must not be set since this uses constant attributes for the matrices.
|
|
|
|
* Defaults to 0.
|
2011-07-01 15:21:59 +00:00
|
|
|
*
|
|
|
|
* GR_GL_USE_BUFFER_DATA_NULL_HINT: When specifing new data for a vertex/index
|
|
|
|
* buffer that replaces old data Ganesh can give a hint to the driver that the
|
|
|
|
* previous data will not be used in future draws like this:
|
|
|
|
* glBufferData(GL_..._BUFFER, size, NULL, usage); //<--hint, NULL means
|
|
|
|
* glBufferSubData(GL_..._BUFFER, 0, lessThanSize, data) // old data can't be
|
|
|
|
* // used again.
|
|
|
|
* However, this can cause a performance decrease on Chrome cmd buffer because
|
|
|
|
* it will create a new allocation and memset the whole thing to zero (for
|
|
|
|
* security reasons). Defaults to 1 (enabled).
|
2011-01-19 17:19:40 +00:00
|
|
|
*/
|
2010-12-22 21:39:39 +00:00
|
|
|
|
2011-02-11 14:07:02 +00:00
|
|
|
#if !defined(GR_GL_LOG_CALLS)
|
2011-04-19 21:15:09 +00:00
|
|
|
#define GR_GL_LOG_CALLS 0
|
2011-02-17 21:47:25 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !defined(GR_GL_LOG_CALLS_START)
|
2011-04-19 21:15:09 +00:00
|
|
|
#define GR_GL_LOG_CALLS_START 0
|
2011-02-17 21:47:25 +00:00
|
|
|
#endif
|
|
|
|
|
2011-03-08 15:34:06 +00:00
|
|
|
#if !defined(GR_GL_CHECK_ERROR)
|
2011-04-19 21:15:09 +00:00
|
|
|
#define GR_GL_CHECK_ERROR GR_DEBUG
|
2011-02-17 21:47:25 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !defined(GR_GL_CHECK_ERROR_START)
|
2011-04-19 21:15:09 +00:00
|
|
|
#define GR_GL_CHECK_ERROR_START 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !defined(GR_GL_NO_CONSTANT_ATTRIBUTES)
|
|
|
|
#define GR_GL_NO_CONSTANT_ATTRIBUTES 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !defined(GR_GL_ATTRIBUTE_MATRICES)
|
|
|
|
#define GR_GL_ATTRIBUTE_MATRICES 0
|
|
|
|
#endif
|
|
|
|
|
2011-07-01 15:21:59 +00:00
|
|
|
#if !defined(GR_GL_USE_BUFFER_DATA_NULL_HINT)
|
|
|
|
#define GR_GL_USE_BUFFER_DATA_NULL_HINT 1
|
|
|
|
#endif
|
|
|
|
|
2011-04-19 21:15:09 +00:00
|
|
|
#if(GR_GL_NO_CONSTANT_ATTRIBUTES) && (GR_GL_ATTRIBUTE_MATRICES)
|
|
|
|
#error "Cannot combine GR_GL_NO_CONSTANT_ATTRIBUTES and GR_GL_ATTRIBUTE_MATRICES"
|
2011-02-11 14:07:02 +00:00
|
|
|
#endif
|
|
|
|
|
2011-01-19 17:19:40 +00:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
2010-12-22 21:39:39 +00:00
|
|
|
|
2011-04-04 17:13:52 +00:00
|
|
|
/**
|
|
|
|
* The following macros are used to staticlly configure the default
|
|
|
|
* GrGLInterface, but should not be used outside of the GrGLInterface
|
|
|
|
* scaffolding. Undefine here to prevent accidental use.
|
|
|
|
*/
|
|
|
|
#undef GR_SUPPORT_GLDESKTOP
|
|
|
|
#undef GR_SUPPORT_GLES1
|
|
|
|
#undef GR_SUPPORT_GLES2
|
|
|
|
#undef GR_SUPPORT_GLES
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2010-12-22 21:39:39 +00:00
|
|
|
#if GR_SCALAR_IS_FIXED
|
|
|
|
#define GrGLType GL_FIXED
|
|
|
|
#elif GR_SCALAR_IS_FLOAT
|
2011-03-18 17:38:11 +00:00
|
|
|
#define GrGLType GR_GL_FLOAT
|
2010-12-22 21:39:39 +00:00
|
|
|
#else
|
|
|
|
#error "unknown GR_SCALAR type"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if GR_TEXT_SCALAR_IS_USHORT
|
2011-03-18 17:38:11 +00:00
|
|
|
#define GrGLTextType GR_GL_UNSIGNED_SHORT
|
2010-12-22 21:39:39 +00:00
|
|
|
#define GR_GL_TEXT_TEXTURE_NORMALIZED 1
|
|
|
|
#elif GR_TEXT_SCALAR_IS_FLOAT
|
2011-03-18 17:38:11 +00:00
|
|
|
#define GrGLTextType GR_GL_FLOAT
|
2010-12-22 21:39:39 +00:00
|
|
|
#define GR_GL_TEXT_TEXTURE_NORMALIZED 0
|
|
|
|
#elif GR_TEXT_SCALAR_IS_FIXED
|
2011-03-18 17:38:11 +00:00
|
|
|
#define GrGLTextType GR_GL_FIXED
|
2010-12-22 21:39:39 +00:00
|
|
|
#define GR_GL_TEXT_TEXTURE_NORMALIZED 0
|
2011-01-18 21:32:14 +00:00
|
|
|
#else
|
2010-12-22 21:39:39 +00:00
|
|
|
#error "unknown GR_TEXT_SCALAR type"
|
|
|
|
#endif
|
|
|
|
|
2011-03-14 21:23:01 +00:00
|
|
|
// Pick a pixel config for 32bit bitmaps. Our default is GL_RGBA (except on
|
2011-01-05 16:34:41 +00:00
|
|
|
// Windows where we match GDI's order).
|
|
|
|
#ifndef GR_GL_32BPP_COLOR_FORMAT
|
2011-05-04 20:12:01 +00:00
|
|
|
#if GR_WIN32_BUILD || GR_LINUX_BUILD
|
2011-03-21 21:10:33 +00:00
|
|
|
#define GR_GL_32BPP_COLOR_FORMAT GR_GL_BGRA
|
|
|
|
#else
|
2011-03-18 17:38:11 +00:00
|
|
|
#define GR_GL_32BPP_COLOR_FORMAT GR_GL_RGBA
|
2011-01-05 16:34:41 +00:00
|
|
|
#endif
|
2010-12-22 21:39:39 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
2011-01-18 21:32:14 +00:00
|
|
|
|
2010-12-22 21:39:39 +00:00
|
|
|
extern void GrGLCheckErr(const char* location, const char* call);
|
|
|
|
|
2011-04-04 17:13:52 +00:00
|
|
|
extern void GrGLClearErr();
|
2010-12-22 21:39:39 +00:00
|
|
|
|
2011-02-17 21:47:25 +00:00
|
|
|
#if GR_GL_CHECK_ERROR
|
|
|
|
extern bool gCheckErrorGL;
|
|
|
|
#define GR_GL_CHECK_ERROR_IMPL(X) if (gCheckErrorGL) GrGLCheckErr(GR_FILE_AND_LINE_STR, #X)
|
2010-12-22 21:39:39 +00:00
|
|
|
#else
|
2011-02-17 21:47:25 +00:00
|
|
|
#define GR_GL_CHECK_ERROR_IMPL(X)
|
2010-12-22 21:39:39 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if GR_GL_LOG_CALLS
|
2011-02-17 21:47:25 +00:00
|
|
|
extern bool gLogCallsGL;
|
|
|
|
#define GR_GL_LOG_CALLS_IMPL(X) if (gLogCallsGL) GrPrintf(GR_FILE_AND_LINE_STR "GL: " #X "\n")
|
2010-12-22 21:39:39 +00:00
|
|
|
#else
|
2011-02-17 21:47:25 +00:00
|
|
|
#define GR_GL_LOG_CALLS_IMPL(X)
|
2010-12-22 21:39:39 +00:00
|
|
|
#endif
|
|
|
|
|
2011-03-14 21:23:01 +00:00
|
|
|
#define GR_GL(X) GrGLGetGLInterface()->f##X;; GR_GL_LOG_CALLS_IMPL(X); GR_GL_CHECK_ERROR_IMPL(X);
|
2011-04-14 17:43:23 +00:00
|
|
|
#define GR_GL_NO_ERR(X) GrGLGetGLInterface()->f##X;; GR_GL_LOG_CALLS_IMPL(X);
|
2011-02-18 16:09:55 +00:00
|
|
|
|
2011-03-18 20:41:44 +00:00
|
|
|
#define GR_GL_SUPPORT_DESKTOP (kDesktop_GrGLBinding == GrGLGetGLInterface()->fBindingsExported)
|
|
|
|
#define GR_GL_SUPPORT_ES1 (kES1_GrGLBinding == GrGLGetGLInterface()->fBindingsExported)
|
|
|
|
#define GR_GL_SUPPORT_ES2 (kES2_GrGLBinding == GrGLGetGLInterface()->fBindingsExported)
|
|
|
|
#define GR_GL_SUPPORT_ES (GR_GL_SUPPORT_ES1 || GR_GL_SUPPORT_ES2)
|
|
|
|
|
2011-02-18 16:09:55 +00:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
/**
|
2011-04-04 17:13:52 +00:00
|
|
|
* GrGLRestoreResetRowLength() will reset GL_UNPACK_ROW_LENGTH to 0. We write
|
2011-02-18 16:09:55 +00:00
|
|
|
* this wrapper, since GL_UNPACK_ROW_LENGTH is not available on all GL versions
|
|
|
|
*/
|
2011-04-04 17:13:52 +00:00
|
|
|
extern void GrGLRestoreResetRowLength();
|
2011-02-18 16:09:55 +00:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Some drivers want the var-int arg to be zero-initialized on input.
|
|
|
|
*/
|
|
|
|
#define GR_GL_INIT_ZERO 0
|
|
|
|
#define GR_GL_GetIntegerv(e, p) \
|
|
|
|
do { \
|
|
|
|
*(p) = GR_GL_INIT_ZERO; \
|
|
|
|
GR_GL(GetIntegerv(e, p)); \
|
|
|
|
} while (0)
|
|
|
|
|
2011-07-26 12:32:36 +00:00
|
|
|
#define GR_GL_GetFramebufferAttachmentParameteriv(t, a, pname, p) \
|
|
|
|
do { \
|
|
|
|
*(p) = GR_GL_INIT_ZERO; \
|
|
|
|
GR_GL(GetFramebufferAttachmentParameteriv(t, a, pname, p)); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define GR_GL_GetRenderbufferParameteriv(t, pname, p) \
|
|
|
|
do { \
|
|
|
|
*(p) = GR_GL_INIT_ZERO; \
|
|
|
|
GR_GL(GetRenderbufferParameteriv(t, pname, p)); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define GR_GL_GetTexLevelParameteriv(t, l, pname, p) \
|
|
|
|
do { \
|
|
|
|
*(p) = GR_GL_INIT_ZERO; \
|
|
|
|
GR_GL(GetTexLevelParameteriv(t, l, pname, p)); \
|
|
|
|
} while (0)
|
|
|
|
|
2011-02-18 16:09:55 +00:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2011-03-08 15:34:06 +00:00
|
|
|
#endif
|