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
|
|
|
|
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "include/gpu/GrTypes.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)
|
2018-01-24 17:42:55 +00:00
|
|
|
#if defined(SK_BUILD_FOR_WIN)
|
2016-08-10 14:30:21 +00:00
|
|
|
#define GR_GL_FUNCTION_TYPE __stdcall
|
|
|
|
#else
|
|
|
|
#define GR_GL_FUNCTION_TYPE
|
|
|
|
#endif
|
2011-04-04 17:13:52 +00:00
|
|
|
#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
|
|
|
*
|
2014-10-31 14:11:12 +00:00
|
|
|
* GR_GL_LOG_CALLS: if 1 Gr can print every GL call using SkDebugf. 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.
|
2013-08-28 14:17:03 +00:00
|
|
|
* Defaults to 1 if SK_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
|
|
|
*
|
2012-01-19 16:16:52 +00:00
|
|
|
* GR_GL_CHECK_ALLOC_WITH_GET_ERROR: If set to 1 this will then glTexImage,
|
|
|
|
* glBufferData, glRenderbufferStorage, etc will be checked for errors. This
|
|
|
|
* amounts to ensuring the error is GL_NO_ERROR, calling the allocating
|
|
|
|
* function, and then checking that the error is still GL_NO_ERROR. When the
|
|
|
|
* value is 0 we will assume no error was generated without checking.
|
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)
|
2013-08-28 14:17:03 +00:00
|
|
|
#ifdef SK_DEBUG
|
|
|
|
#define GR_GL_LOG_CALLS 1
|
|
|
|
#else
|
|
|
|
#define GR_GL_LOG_CALLS 0
|
|
|
|
#endif
|
2011-02-17 21:47:25 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !defined(GR_GL_LOG_CALLS_START)
|
2012-02-07 16:06:47 +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)
|
2013-08-28 14:17:03 +00:00
|
|
|
#ifdef SK_DEBUG
|
|
|
|
#define GR_GL_CHECK_ERROR 1
|
|
|
|
#else
|
|
|
|
#define GR_GL_CHECK_ERROR 0
|
|
|
|
#endif
|
2011-02-17 21:47:25 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !defined(GR_GL_CHECK_ERROR_START)
|
2012-02-07 16:06:47 +00:00
|
|
|
#define GR_GL_CHECK_ERROR_START 1
|
2011-04-19 21:15:09 +00:00
|
|
|
#endif
|
|
|
|
|
2012-01-19 16:16:52 +00:00
|
|
|
#if !defined(GR_GL_CHECK_ALLOC_WITH_GET_ERROR)
|
2012-02-07 16:06:47 +00:00
|
|
|
#define GR_GL_CHECK_ALLOC_WITH_GET_ERROR 1
|
|
|
|
#endif
|
|
|
|
|
2011-03-08 15:34:06 +00:00
|
|
|
#endif
|