2008-04-25 09:37:36 -04:00
|
|
|
/*
|
2009-04-27 10:48:12 -04:00
|
|
|
* Cogl
|
2008-04-25 09:37:36 -04:00
|
|
|
*
|
2009-04-27 10:48:12 -04:00
|
|
|
* An object oriented GL/GLES Abstraction/Utility Layer
|
2008-04-25 09:37:36 -04:00
|
|
|
*
|
2009-04-27 10:48:12 -04:00
|
|
|
* Copyright (C) 2007,2008,2009 Intel Corporation.
|
2008-04-25 09:37:36 -04:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2010-03-01 07:56:10 -05:00
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*
|
2008-04-25 09:37:36 -04:00
|
|
|
*/
|
|
|
|
|
2009-07-27 20:34:33 -04:00
|
|
|
#ifndef __COGL_CONTEXT_DRIVER_H
|
|
|
|
#define __COGL_CONTEXT_DRIVER_H
|
2008-04-25 09:37:36 -04:00
|
|
|
|
2009-07-27 20:34:33 -04:00
|
|
|
#include "cogl.h"
|
2008-04-25 09:37:36 -04:00
|
|
|
|
2009-11-18 14:09:10 -05:00
|
|
|
#ifndef APIENTRY
|
|
|
|
#define APIENTRY
|
|
|
|
#endif
|
|
|
|
|
2009-11-17 08:52:40 -05:00
|
|
|
#define COGL_FEATURE_BEGIN(a, b, c, d, e, f)
|
2008-11-10 13:53:14 -05:00
|
|
|
|
2009-11-17 08:52:40 -05:00
|
|
|
#define COGL_FEATURE_FUNCTION(ret, name, args) \
|
2009-11-18 14:09:10 -05:00
|
|
|
ret (APIENTRY * pf_ ## name) args;
|
2008-11-21 11:18:58 -05:00
|
|
|
|
2009-11-17 08:52:40 -05:00
|
|
|
#define COGL_FEATURE_END()
|
2008-04-25 09:37:36 -04:00
|
|
|
|
2009-11-17 08:52:40 -05:00
|
|
|
typedef struct _CoglContextDriver
|
|
|
|
{
|
|
|
|
/* This defines a list of function pointers */
|
|
|
|
#include "cogl-feature-functions.h"
|
2009-07-27 20:34:33 -04:00
|
|
|
} CoglContextDriver;
|
2008-04-25 09:37:36 -04:00
|
|
|
|
2009-11-17 08:52:40 -05:00
|
|
|
#undef COGL_FEATURE_BEGIN
|
|
|
|
#undef COGL_FEATURE_FUNCTION
|
|
|
|
#undef COGL_FEATURE_END
|
|
|
|
|
2009-07-27 20:34:33 -04:00
|
|
|
#endif /* __COGL_CONTEXT_DRIVER_H */
|
2008-04-25 09:37:36 -04:00
|
|
|
|