cally: Do not use deprecated functions
[profile/ivi/clutter.git] / clutter / cogl / cogl / driver / gles / cogl-context-driver.c
1 /*
2  * Cogl
3  *
4  * An object oriented GL/GLES Abstraction/Utility Layer
5  *
6  * Copyright (C) 2007,2008,2009 Intel Corporation.
7  *
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.
12  *
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.
17  *
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/>.
20  *
21  *
22  */
23
24 #ifdef HAVE_CONFIG_H
25 #include "config.h"
26 #endif
27
28 #include "cogl-context.h"
29 #include "cogl-gles2-wrapper.h"
30
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()
35
36 void
37 _cogl_create_context_driver (CoglContext *_context)
38 {
39   #include "cogl-feature-functions.h"
40
41   /* Init the GLES2 wrapper */
42 #ifdef HAVE_COGL_GLES2
43   _cogl_gles2_wrapper_init (&_context->drv.gles2);
44 #endif
45 }
46