2009-04-10 18:30:46 +00:00
|
|
|
/*
|
2009-03-15 13:48:19 +00:00
|
|
|
* GStreamer
|
|
|
|
* Copyright (C) 2009 Julien Isorce <julien.isorce@gmail.com>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library 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
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
2012-11-08 11:53:56 +00:00
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
2009-03-15 13:48:19 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/* Compatibility for OpenGL ES 2.0 */
|
|
|
|
|
|
|
|
#ifndef __GST_GL_ES2__
|
|
|
|
#define __GST_GL_ES2__
|
|
|
|
|
2011-11-18 16:32:05 +00:00
|
|
|
#include <glib.h>
|
|
|
|
|
2010-12-14 23:56:55 +00:00
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2009-03-15 13:48:19 +00:00
|
|
|
/* SUPPORTED */
|
2014-04-12 19:43:50 +00:00
|
|
|
/* FIXME: On iOS this exists but maps to an actual BGRA extension */
|
|
|
|
#ifdef __APPLE__
|
|
|
|
#ifdef GL_BGRA
|
|
|
|
#undef GL_BGRA
|
|
|
|
#endif
|
|
|
|
#endif
|
2009-03-15 13:48:19 +00:00
|
|
|
|
|
|
|
//FIXME:
|
2014-03-22 22:01:49 +00:00
|
|
|
#define GL_RGB16 GL_RGB565
|
|
|
|
#define GL_RGB8 GL_RGB
|
2009-03-15 13:48:19 +00:00
|
|
|
#define GL_RGBA8 GL_RGBA
|
|
|
|
#define GL_BGRA GL_RGBA
|
2013-07-15 12:11:20 +00:00
|
|
|
#define GL_BGR GL_RGB
|
2009-03-15 13:48:19 +00:00
|
|
|
#define GL_UNSIGNED_INT_8_8_8_8 GL_UNSIGNED_BYTE
|
|
|
|
#define GL_UNSIGNED_INT_8_8_8_8_REV GL_UNSIGNED_BYTE
|
|
|
|
//END FIXME
|
|
|
|
|
|
|
|
/* UNSUPPORTED */
|
|
|
|
|
|
|
|
#define GL_YCBCR_MESA 0
|
|
|
|
#define GL_UNSIGNED_SHORT_8_8_MESA 0
|
|
|
|
#define GL_UNSIGNED_SHORT_8_8_MESA 0
|
|
|
|
#define GL_UNSIGNED_SHORT_8_8_REV_MESA 0
|
|
|
|
|
2013-01-16 04:21:44 +00:00
|
|
|
#define GL_COLOR_ATTACHMENT1 0
|
|
|
|
#define GL_COLOR_ATTACHMENT2 0
|
2014-03-24 12:08:43 +00:00
|
|
|
#ifndef GL_TEXTURE_ENV
|
2009-03-15 13:48:19 +00:00
|
|
|
#define GL_TEXTURE_ENV 0
|
2014-03-24 12:08:43 +00:00
|
|
|
#endif
|
|
|
|
#ifndef GL_TEXTURE_ENV_MODE
|
2009-03-15 13:48:19 +00:00
|
|
|
#define GL_TEXTURE_ENV_MODE 0
|
2014-03-24 12:08:43 +00:00
|
|
|
#endif
|
2013-01-16 04:21:44 +00:00
|
|
|
#define GL_DEPTH24_STENCIL8 0
|
2009-03-15 13:48:19 +00:00
|
|
|
|
2010-12-14 23:56:55 +00:00
|
|
|
G_END_DECLS
|
|
|
|
|
2009-03-15 13:48:19 +00:00
|
|
|
#endif /* __GST_GL_ES2__ */
|