mirror of
https://github.com/brl/mutter.git
synced 2024-11-23 00:20:42 -05:00
54735dec84
The coding style has for a long time said to avoid using redundant glib data types such as gint or gchar etc because we feel that they make the code look unnecessarily foreign to developers coming from outside of the Gnome developer community. Note: When we tried to find the historical rationale for the types we just found that they were apparently only added for consistent syntax highlighting which didn't seem that compelling. Up until now we have been continuing to use some of the platform specific type such as gint{8,16,32,64} and gsize but this patch switches us over to using the standard c99 equivalents instead so we can further ensure that our code looks familiar to the widest range of C developers who might potentially contribute to Cogl. So instead of using the gint{8,16,32,64} and guint{8,16,32,64} types this switches all Cogl code to instead use the int{8,16,32,64}_t and uint{8,16,32,64}_t c99 types instead. Instead of gsize we now use size_t For now we are not going to use the c99 _Bool type and instead we have introduced a new CoglBool type to use instead of gboolean. Reviewed-by: Neil Roberts <neil@linux.intel.com> (cherry picked from commit 5967dad2400d32ca6319cef6cb572e81bf2c15f0)
153 lines
4.0 KiB
C
153 lines
4.0 KiB
C
/*
|
|
* Cogl
|
|
*
|
|
* An object oriented GL/GLES Abstraction/Utility Layer
|
|
*
|
|
* Copyright (C) 2011 Intel Corporation.
|
|
*
|
|
* 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
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*
|
|
*/
|
|
|
|
#ifndef __COGL_WINSYS_EGL_PRIVATE_H
|
|
#define __COGL_WINSYS_EGL_PRIVATE_H
|
|
|
|
#include "cogl-defines.h"
|
|
#include "cogl-winsys-private.h"
|
|
#include "cogl-context.h"
|
|
#include "cogl-context-private.h"
|
|
#include "cogl-framebuffer-private.h"
|
|
|
|
typedef struct _CoglWinsysEGLVtable
|
|
{
|
|
CoglBool
|
|
(* display_setup) (CoglDisplay *display,
|
|
GError **error);
|
|
void
|
|
(* display_destroy) (CoglDisplay *display);
|
|
|
|
CoglBool
|
|
(* context_created) (CoglDisplay *display,
|
|
GError **error);
|
|
|
|
void
|
|
(* cleanup_context) (CoglDisplay *display);
|
|
|
|
CoglBool
|
|
(* context_init) (CoglContext *context, GError **error);
|
|
|
|
void
|
|
(* context_deinit) (CoglContext *context);
|
|
|
|
CoglBool
|
|
(* onscreen_init) (CoglOnscreen *onscreen,
|
|
EGLConfig config,
|
|
GError **error);
|
|
void
|
|
(* onscreen_deinit) (CoglOnscreen *onscreen);
|
|
|
|
int
|
|
(* add_config_attributes) (CoglDisplay *display,
|
|
CoglFramebufferConfig *config,
|
|
EGLint *attributes);
|
|
} CoglWinsysEGLVtable;
|
|
|
|
typedef enum _CoglEGLWinsysFeature
|
|
{
|
|
COGL_EGL_WINSYS_FEATURE_SWAP_REGION =1L<<0,
|
|
COGL_EGL_WINSYS_FEATURE_EGL_IMAGE_FROM_X11_PIXMAP =1L<<1,
|
|
COGL_EGL_WINSYS_FEATURE_EGL_IMAGE_FROM_WAYLAND_BUFFER =1L<<2,
|
|
COGL_EGL_WINSYS_FEATURE_SURFACELESS_OPENGL =1L<<3,
|
|
COGL_EGL_WINSYS_FEATURE_SURFACELESS_GLES1 =1L<<4,
|
|
COGL_EGL_WINSYS_FEATURE_SURFACELESS_GLES2 =1L<<5
|
|
} CoglEGLWinsysFeature;
|
|
|
|
typedef struct _CoglRendererEGL
|
|
{
|
|
CoglEGLWinsysFeature private_features;
|
|
|
|
EGLDisplay edpy;
|
|
|
|
EGLint egl_version_major;
|
|
EGLint egl_version_minor;
|
|
|
|
/* Data specific to the EGL platform */
|
|
void *platform;
|
|
/* vtable for platform specific parts */
|
|
const CoglWinsysEGLVtable *platform_vtable;
|
|
|
|
/* Function pointers for EGL specific extensions */
|
|
#define COGL_WINSYS_FEATURE_BEGIN(a, b, c, d)
|
|
|
|
#define COGL_WINSYS_FEATURE_FUNCTION(ret, name, args) \
|
|
ret (APIENTRY * pf_ ## name) args;
|
|
|
|
#define COGL_WINSYS_FEATURE_END()
|
|
|
|
#include "cogl-winsys-egl-feature-functions.h"
|
|
|
|
#undef COGL_WINSYS_FEATURE_BEGIN
|
|
#undef COGL_WINSYS_FEATURE_FUNCTION
|
|
#undef COGL_WINSYS_FEATURE_END
|
|
} CoglRendererEGL;
|
|
|
|
typedef struct _CoglDisplayEGL
|
|
{
|
|
EGLContext egl_context;
|
|
EGLSurface dummy_surface;
|
|
EGLSurface egl_surface;
|
|
|
|
EGLConfig egl_config;
|
|
CoglBool found_egl_config;
|
|
CoglBool stencil_disabled;
|
|
|
|
/* Platform specific display data */
|
|
void *platform;
|
|
} CoglDisplayEGL;
|
|
|
|
typedef struct _CoglContextEGL
|
|
{
|
|
EGLSurface current_surface;
|
|
} CoglContextEGL;
|
|
|
|
typedef struct _CoglOnscreenEGL
|
|
{
|
|
EGLSurface egl_surface;
|
|
|
|
/* Platform specific data */
|
|
void *platform;
|
|
} CoglOnscreenEGL;
|
|
|
|
const CoglWinsysVtable *
|
|
_cogl_winsys_egl_get_vtable (void);
|
|
|
|
#ifdef EGL_KHR_image_base
|
|
EGLImageKHR
|
|
_cogl_egl_create_image (CoglContext *ctx,
|
|
EGLenum target,
|
|
EGLClientBuffer buffer,
|
|
const EGLint *attribs);
|
|
|
|
void
|
|
_cogl_egl_destroy_image (CoglContext *ctx,
|
|
EGLImageKHR image);
|
|
#endif
|
|
|
|
CoglBool
|
|
_cogl_winsys_egl_renderer_connect_common (CoglRenderer *renderer,
|
|
GError **error);
|
|
|
|
#endif /* __COGL_WINSYS_EGL_PRIVATE_H */
|