4 * An object oriented GL/GLES Abstraction/Utility Layer
6 * Copyright (C) 2007,2008,2009 Intel Corporation.
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library. If not, see <http://www.gnu.org/licenses/>.
28 #include "cogl-context.h"
29 #include "cogl-gles2-wrapper.h"
31 #define COGL_FEATURE_BEGIN(a, b, c, d, e, f, g)
32 #define COGL_FEATURE_FUNCTION(ret, name, args) \
33 _context->drv.pf_ ## name = NULL;
34 #define COGL_FEATURE_END()
37 _cogl_create_context_driver (CoglContext *_context)
39 #include "cogl-feature-functions-gles.h"
41 /* Init the GLES2 wrapper */
42 #ifdef HAVE_COGL_GLES2
43 _cogl_gles2_wrapper_init (&_context->drv.gles2);