mirror of
https://github.com/brl/mutter.git
synced 2024-11-25 09:30:45 -05:00
Remove all internal includes of cogl.h
The cogl.h header is meant to be the public header for including the 1.x api used by Clutter so we should stop using that as a convenient way to include all likely prototypes and typedefs. Actually we already do a good job of listing the specific headers we depend on in each of the .c files we have so mostly this patch just strip out the redundant includes for cogl.h with a few fixups where that broke the build. Reviewed-by: Neil Roberts <neil@linux.intel.com>
This commit is contained in:
parent
cc4aa97579
commit
680f63a48c
@ -28,7 +28,6 @@
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include "cogl.h"
|
||||
#include "cogl-debug.h"
|
||||
#include "cogl-internal.h"
|
||||
#include "cogl-util.h"
|
||||
@ -44,6 +43,7 @@
|
||||
#include "cogl-pipeline-opengl-private.h"
|
||||
#include "cogl-atlas.h"
|
||||
#include "cogl1-context.h"
|
||||
#include "cogl-sub-texture.h"
|
||||
|
||||
#include <stdlib.h>
|
||||
|
||||
|
@ -28,7 +28,6 @@
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include "cogl.h"
|
||||
#include "cogl-atlas.h"
|
||||
#include "cogl-rectangle-map.h"
|
||||
#include "cogl-context-private.h"
|
||||
|
@ -25,7 +25,6 @@
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include "cogl.h"
|
||||
#include "cogl-private.h"
|
||||
#include "cogl-bitmap-private.h"
|
||||
|
||||
|
@ -25,7 +25,6 @@
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include "cogl.h"
|
||||
#include "cogl-util.h"
|
||||
#include "cogl-internal.h"
|
||||
#include "cogl-bitmap-private.h"
|
||||
|
@ -25,7 +25,6 @@
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include "cogl.h"
|
||||
#include "cogl-util.h"
|
||||
#include "cogl-debug.h"
|
||||
#include "cogl-private.h"
|
||||
|
@ -33,7 +33,6 @@
|
||||
|
||||
#include <glib.h>
|
||||
|
||||
#include "cogl.h"
|
||||
#include "cogl-internal.h"
|
||||
#include "cogl-context-private.h"
|
||||
#include "cogl-debug.h"
|
||||
|
@ -30,7 +30,6 @@
|
||||
|
||||
#include <string.h>
|
||||
|
||||
#include "cogl.h"
|
||||
#include "cogl-util.h"
|
||||
#include "cogl-blit.h"
|
||||
#include "cogl-context-private.h"
|
||||
|
@ -30,9 +30,9 @@
|
||||
|
||||
#include <glib.h>
|
||||
|
||||
#include "cogl.h"
|
||||
#include "cogl-object-private.h"
|
||||
#include "cogl-buffer.h"
|
||||
#include "cogl-context.h"
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
|
@ -38,7 +38,6 @@
|
||||
#include <string.h>
|
||||
#include <glib.h>
|
||||
|
||||
#include "cogl.h"
|
||||
#include "cogl-internal.h"
|
||||
#include "cogl-util.h"
|
||||
#include "cogl-context-private.h"
|
||||
|
@ -30,7 +30,6 @@
|
||||
|
||||
#include <glib.h>
|
||||
|
||||
#include "cogl.h"
|
||||
#include "cogl-clip-stack.h"
|
||||
#include "cogl-primitives.h"
|
||||
#include "cogl-context-private.h"
|
||||
@ -46,6 +45,7 @@
|
||||
#include "cogl-attribute-private.h"
|
||||
#include "cogl-primitive-private.h"
|
||||
#include "cogl1-context.h"
|
||||
#include "cogl-offscreen.h"
|
||||
|
||||
#ifndef GL_CLIP_PLANE0
|
||||
#define GL_CLIP_PLANE0 0x3000
|
||||
|
@ -26,7 +26,7 @@
|
||||
|
||||
#include "cogl2-path.h"
|
||||
#include "cogl-matrix.h"
|
||||
#include "cogl.h"
|
||||
#include "cogl-primitive.h"
|
||||
|
||||
/* The clip stack works like a GSList where only a pointer to the top
|
||||
of the stack is stored. The empty clip stack is represented simply
|
||||
|
@ -30,7 +30,6 @@
|
||||
|
||||
#include <glib.h>
|
||||
|
||||
#include "cogl.h"
|
||||
#include "cogl-clip-stack.h"
|
||||
#include "cogl-clip-state-private.h"
|
||||
#include "cogl-context-private.h"
|
||||
@ -40,6 +39,12 @@
|
||||
#include "cogl-util.h"
|
||||
#include "cogl-matrix-private.h"
|
||||
|
||||
#ifdef COGL_ENABLE_EXPERIMENTAL_2_0_API
|
||||
#include <cogl/cogl2-clip-state.h>
|
||||
#else
|
||||
#include <cogl/cogl-clip-state.h>
|
||||
#endif
|
||||
|
||||
void
|
||||
cogl_clip_push_window_rectangle (int x_offset,
|
||||
int y_offset,
|
||||
|
@ -30,7 +30,6 @@
|
||||
|
||||
#include <glib.h>
|
||||
|
||||
#include "cogl.h"
|
||||
#include "cogl-util.h"
|
||||
#include "cogl-types.h"
|
||||
#include "cogl-private.h"
|
||||
@ -42,6 +41,7 @@
|
||||
#ifdef COGL_HAS_XLIB_SUPPORT
|
||||
#include "cogl-clutter-xlib.h"
|
||||
#endif
|
||||
#include "cogl-clutter.h"
|
||||
|
||||
gboolean
|
||||
cogl_clutter_check_extension (const char *name, const char *ext)
|
||||
|
@ -27,7 +27,6 @@
|
||||
|
||||
#include <string.h>
|
||||
|
||||
#include "cogl.h"
|
||||
#include "cogl-util.h"
|
||||
#include "cogl-color.h"
|
||||
#include "cogl-fixed.h"
|
||||
|
@ -25,7 +25,6 @@
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include "cogl.h"
|
||||
#include "cogl-object.h"
|
||||
#include "cogl-internal.h"
|
||||
#include "cogl-private.h"
|
||||
|
@ -28,7 +28,6 @@
|
||||
#include <stdlib.h>
|
||||
#include <glib/gi18n-lib.h>
|
||||
|
||||
#include "cogl.h"
|
||||
#include "cogl-private.h"
|
||||
#include "cogl-debug.h"
|
||||
|
||||
|
@ -27,9 +27,9 @@
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include <cogl/cogl.h>
|
||||
#include "cogl-util.h"
|
||||
#include "cogl-depth-state-private.h"
|
||||
#include "cogl-depth-state.h"
|
||||
|
||||
void
|
||||
cogl_depth_state_init (CoglDepthState *state)
|
||||
|
@ -30,7 +30,6 @@
|
||||
|
||||
#include <string.h>
|
||||
|
||||
#include "cogl.h"
|
||||
#include "cogl-private.h"
|
||||
#include "cogl-object.h"
|
||||
#include "cogl-internal.h"
|
||||
|
@ -1,6 +1,5 @@
|
||||
/*** BEGIN file-header ***/
|
||||
#include "cogl-enum-types.h"
|
||||
#include "cogl.h"
|
||||
/*** END file-header ***/
|
||||
|
||||
/*** BEGIN file-production ***/
|
||||
|
@ -28,9 +28,9 @@
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include <cogl.h>
|
||||
#include <cogl-util.h>
|
||||
#include <cogl-euler.h>
|
||||
#include <cogl-matrix.h>
|
||||
|
||||
#include <math.h>
|
||||
#include <string.h>
|
||||
|
@ -27,7 +27,6 @@
|
||||
|
||||
#include <string.h>
|
||||
|
||||
#include "cogl.h"
|
||||
#include "cogl-context-private.h"
|
||||
|
||||
#include "cogl-feature-private.h"
|
||||
|
@ -25,7 +25,6 @@
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include "cogl.h"
|
||||
#include "cogl-debug.h"
|
||||
#include "cogl-internal.h"
|
||||
#include "cogl-context-private.h"
|
||||
|
@ -24,8 +24,6 @@
|
||||
#ifndef __COGL_INTERNAL_H
|
||||
#define __COGL_INTERNAL_H
|
||||
|
||||
#include "cogl.h"
|
||||
#include "cogl-matrix-stack.h"
|
||||
#include "cogl-bitmask.h"
|
||||
|
||||
#ifdef COGL_HAS_XLIB_SUPPORT
|
||||
|
@ -24,7 +24,6 @@
|
||||
#ifndef __COGL_JOURNAL_PRIVATE_H
|
||||
#define __COGL_JOURNAL_PRIVATE_H
|
||||
|
||||
#include "cogl.h"
|
||||
#include "cogl-handle.h"
|
||||
#include "cogl-clip-stack.h"
|
||||
|
||||
|
@ -25,7 +25,6 @@
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include "cogl.h"
|
||||
#include "cogl-debug.h"
|
||||
#include "cogl-internal.h"
|
||||
#include "cogl-context-private.h"
|
||||
|
@ -26,7 +26,6 @@
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include <cogl.h>
|
||||
#include <cogl-material-compat.h>
|
||||
#include <cogl-pipeline.h>
|
||||
#include <cogl-pipeline-private.h>
|
||||
|
@ -28,12 +28,12 @@
|
||||
#ifndef __COGL_MATERIAL_H__
|
||||
#define __COGL_MATERIAL_H__
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
#include <cogl/cogl-types.h>
|
||||
#include <cogl/cogl-matrix.h>
|
||||
#include <cogl/cogl-depth-state.h>
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
/**
|
||||
* SECTION:cogl-material
|
||||
* @short_description: Fuctions for creating and manipulating materials
|
||||
|
@ -29,12 +29,12 @@
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include "cogl.h"
|
||||
#include "cogl-context-private.h"
|
||||
#include "cogl-internal.h"
|
||||
#include "cogl-matrix-stack.h"
|
||||
#include "cogl-framebuffer-private.h"
|
||||
#include "cogl-object-private.h"
|
||||
#include "cogl-offscreen.h"
|
||||
|
||||
typedef struct {
|
||||
CoglMatrix matrix;
|
||||
|
@ -65,7 +65,6 @@
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include <cogl.h>
|
||||
#include <cogl-util.h>
|
||||
#include <cogl-debug.h>
|
||||
#include <cogl-quaternion.h>
|
||||
|
@ -28,7 +28,6 @@
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include "cogl.h"
|
||||
#include "cogl-object.h"
|
||||
|
||||
#include "cogl-framebuffer-private.h"
|
||||
|
@ -27,7 +27,6 @@
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include "cogl.h"
|
||||
#include "cogl-util.h"
|
||||
#include "cogl-internal.h"
|
||||
#include "cogl-context-private.h"
|
||||
|
@ -37,7 +37,6 @@
|
||||
|
||||
#ifdef COGL_PIPELINE_FRAGEND_ARBFP
|
||||
|
||||
#include "cogl.h"
|
||||
#include "cogl-internal.h"
|
||||
#include "cogl-context-private.h"
|
||||
#include "cogl-handle.h"
|
||||
|
@ -36,7 +36,6 @@
|
||||
|
||||
#ifdef COGL_PIPELINE_FRAGEND_FIXED
|
||||
|
||||
#include "cogl.h"
|
||||
#include "cogl-internal.h"
|
||||
#include "cogl-context-private.h"
|
||||
#include "cogl-handle.h"
|
||||
|
@ -41,7 +41,6 @@
|
||||
|
||||
#ifdef COGL_PIPELINE_FRAGEND_GLSL
|
||||
|
||||
#include "cogl.h"
|
||||
#include "cogl-internal.h"
|
||||
#include "cogl-context-private.h"
|
||||
#include "cogl-handle.h"
|
||||
|
@ -28,8 +28,6 @@
|
||||
#ifndef __COGL_PIPELINE_OPENGL_PRIVATE_H
|
||||
#define __COGL_PIPELINE_OPENGL_PRIVATE_H
|
||||
|
||||
#include "cogl.h"
|
||||
|
||||
#include "cogl-pipeline-private.h"
|
||||
#include "cogl-matrix-stack.h"
|
||||
|
||||
|
@ -29,14 +29,13 @@
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include "cogl.h"
|
||||
|
||||
#include "cogl-debug.h"
|
||||
#include "cogl-pipeline-opengl-private.h"
|
||||
#include "cogl-pipeline-private.h"
|
||||
#include "cogl-context-private.h"
|
||||
#include "cogl-texture-private.h"
|
||||
#include "cogl-framebuffer-private.h"
|
||||
#include "cogl-offscreen.h"
|
||||
|
||||
/* This is needed to set the color attribute on GLES2 */
|
||||
#ifdef HAVE_COGL_GLES2
|
||||
|
@ -38,6 +38,7 @@
|
||||
#include "cogl-internal.h"
|
||||
#include "cogl-boxed-value.h"
|
||||
#include "cogl-pipeline-snippet-private.h"
|
||||
#include "cogl-pipeline-state.h"
|
||||
|
||||
#include <glib.h>
|
||||
|
||||
|
@ -35,10 +35,10 @@
|
||||
#include "cogl-context-private.h"
|
||||
#include "cogl-pipeline-private.h"
|
||||
#include "cogl-pipeline-opengl-private.h"
|
||||
#include "cogl-offscreen.h"
|
||||
|
||||
#ifdef COGL_PIPELINE_PROGEND_GLSL
|
||||
|
||||
#include "cogl.h"
|
||||
#include "cogl-internal.h"
|
||||
#include "cogl-context-private.h"
|
||||
#include "cogl-handle.h"
|
||||
|
@ -30,6 +30,7 @@
|
||||
|
||||
#include <cogl/cogl-pipeline.h>
|
||||
#include <cogl/cogl-color.h>
|
||||
#include <cogl/cogl-depth-state.h>
|
||||
#include <glib.h>
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
@ -36,7 +36,6 @@
|
||||
|
||||
#ifdef COGL_PIPELINE_VERTEND_FIXED
|
||||
|
||||
#include "cogl.h"
|
||||
#include "cogl-internal.h"
|
||||
#include "cogl-context-private.h"
|
||||
#include "cogl-handle.h"
|
||||
|
@ -37,7 +37,6 @@
|
||||
|
||||
#ifdef COGL_PIPELINE_VERTEND_GLSL
|
||||
|
||||
#include "cogl.h"
|
||||
#include "cogl-internal.h"
|
||||
#include "cogl-context-private.h"
|
||||
#include "cogl-handle.h"
|
||||
|
@ -29,7 +29,6 @@
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include "cogl.h"
|
||||
#include "cogl-debug.h"
|
||||
#include "cogl-internal.h"
|
||||
#include "cogl-context-private.h"
|
||||
|
@ -38,7 +38,6 @@
|
||||
#include <string.h>
|
||||
#include <glib.h>
|
||||
|
||||
#include "cogl.h"
|
||||
#include "cogl-private.h"
|
||||
#include "cogl-util.h"
|
||||
#include "cogl-context-private.h"
|
||||
|
@ -25,7 +25,6 @@
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include "cogl.h"
|
||||
#include "cogl-debug.h"
|
||||
#include "cogl-internal.h"
|
||||
#include "cogl-context-private.h"
|
||||
|
@ -25,7 +25,6 @@
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include "cogl.h"
|
||||
|
||||
#include "cogl-util.h"
|
||||
#include "cogl-internal.h"
|
||||
|
@ -38,7 +38,6 @@
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include <cogl.h>
|
||||
#include <cogl-util.h>
|
||||
#include <cogl-quaternion.h>
|
||||
#include <cogl-quaternion-private.h>
|
||||
|
@ -31,7 +31,6 @@
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
#include "cogl.h"
|
||||
#include "cogl-util.h"
|
||||
#include "cogl-internal.h"
|
||||
#include "cogl-private.h"
|
||||
|
@ -27,7 +27,6 @@
|
||||
#ifndef __COGL_SHADER_BOILERPLATE_H
|
||||
#define __COGL_SHADER_BOILERPLATE_H
|
||||
|
||||
#include "cogl.h"
|
||||
|
||||
#define _COGL_COMMON_SHADER_BOILERPLATE_GL \
|
||||
"#define COGL_VERSION 100\n" \
|
||||
|
@ -25,6 +25,7 @@
|
||||
#define __COGL_SHADER_H
|
||||
|
||||
#include "cogl-handle.h"
|
||||
#include "cogl-shader.h"
|
||||
|
||||
typedef struct _CoglShader CoglShader;
|
||||
|
||||
|
@ -25,7 +25,6 @@
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include "cogl.h"
|
||||
#include "cogl-shader-private.h"
|
||||
#include "cogl-shader-boilerplate.h"
|
||||
#include "cogl-internal.h"
|
||||
|
@ -27,7 +27,6 @@
|
||||
|
||||
#include "math.h"
|
||||
|
||||
#include "cogl.h"
|
||||
#include "cogl-util.h"
|
||||
#include "cogl-internal.h"
|
||||
#include "cogl-spans.h"
|
||||
|
@ -28,15 +28,16 @@
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include "cogl.h"
|
||||
#include "cogl-internal.h"
|
||||
#include "cogl-util.h"
|
||||
#include "cogl-texture-private.h"
|
||||
#include "cogl-sub-texture-private.h"
|
||||
#include "cogl-sub-texture.h"
|
||||
#include "cogl-context-private.h"
|
||||
#include "cogl-object.h"
|
||||
#include "cogl-texture-driver.h"
|
||||
#include "cogl-texture-rectangle-private.h"
|
||||
#include "cogl-texture-2d.h"
|
||||
|
||||
#include <string.h>
|
||||
#include <math.h>
|
||||
|
@ -28,10 +28,10 @@
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include "cogl.h"
|
||||
#include "cogl-object.h"
|
||||
|
||||
#include "cogl-swap-chain-private.h"
|
||||
#include "cogl-swap-chain.h"
|
||||
|
||||
static void _cogl_swap_chain_free (CoglSwapChain *swap_chain);
|
||||
|
||||
|
@ -27,6 +27,7 @@
|
||||
#include "cogl-handle.h"
|
||||
#include "cogl-pipeline-private.h"
|
||||
#include "cogl-texture-private.h"
|
||||
#include "cogl-texture-2d.h"
|
||||
|
||||
struct _CoglTexture2D
|
||||
{
|
||||
|
@ -30,7 +30,6 @@
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include "cogl.h"
|
||||
#include "cogl-debug.h"
|
||||
#include "cogl-private.h"
|
||||
#include "cogl-util.h"
|
||||
|
@ -28,7 +28,6 @@
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include "cogl.h"
|
||||
#include "cogl-private.h"
|
||||
#include "cogl-util.h"
|
||||
#include "cogl-texture-private.h"
|
||||
|
@ -26,11 +26,11 @@
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include "cogl.h"
|
||||
#include "cogl-private.h"
|
||||
#include "cogl-util.h"
|
||||
#include "cogl-texture-private.h"
|
||||
#include "cogl-texture-3d-private.h"
|
||||
#include "cogl-texture-3d.h"
|
||||
#include "cogl-texture-driver.h"
|
||||
#include "cogl-context-private.h"
|
||||
#include "cogl-handle.h"
|
||||
|
@ -28,6 +28,7 @@
|
||||
#include "cogl-handle.h"
|
||||
#include "cogl-pipeline-private.h"
|
||||
#include "cogl-spans.h"
|
||||
#include "cogl-meta-texture.h"
|
||||
|
||||
typedef struct _CoglTextureVtable CoglTextureVtable;
|
||||
|
||||
|
@ -26,6 +26,7 @@
|
||||
|
||||
#include "cogl-pipeline-private.h"
|
||||
#include "cogl-texture-private.h"
|
||||
#include "cogl-texture-rectangle.h"
|
||||
|
||||
struct _CoglTextureRectangle
|
||||
{
|
||||
|
@ -28,7 +28,6 @@
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include "cogl.h"
|
||||
#include "cogl-private.h"
|
||||
#include "cogl-util.h"
|
||||
#include "cogl-texture-private.h"
|
||||
|
@ -31,7 +31,6 @@
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include "cogl.h"
|
||||
#include "cogl-internal.h"
|
||||
#include "cogl-util.h"
|
||||
#include "cogl-bitmap.h"
|
||||
@ -53,6 +52,7 @@
|
||||
#include "cogl-primitives.h"
|
||||
#include "cogl-framebuffer-private.h"
|
||||
#include "cogl1-context.h"
|
||||
#include "cogl-sub-texture.h"
|
||||
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
|
@ -26,7 +26,8 @@
|
||||
|
||||
#include <glib.h>
|
||||
#include <math.h>
|
||||
#include "cogl-defines.h"
|
||||
|
||||
#include <cogl/cogl-defines.h>
|
||||
#include "cogl-types.h"
|
||||
|
||||
#ifndef COGL_HAS_GLIB_SUPPORT
|
||||
|
@ -28,7 +28,6 @@
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include <cogl.h>
|
||||
#include <cogl-util.h>
|
||||
#include <cogl-vector.h>
|
||||
|
||||
|
@ -96,7 +96,6 @@
|
||||
#include <string.h>
|
||||
#include <glib.h>
|
||||
|
||||
#include "cogl.h"
|
||||
#include "cogl-internal.h"
|
||||
#include "cogl-util.h"
|
||||
#include "cogl-context-private.h"
|
||||
|
@ -24,8 +24,6 @@
|
||||
#ifndef __COGL_XLIB_PRIVATE_H
|
||||
#define __COGL_XLIB_PRIVATE_H
|
||||
|
||||
#include "cogl/cogl.h"
|
||||
|
||||
#include <X11/Xlib.h>
|
||||
|
||||
typedef struct _CoglXlibTrapState CoglXlibTrapState;
|
||||
|
@ -28,9 +28,11 @@
|
||||
#ifndef __COGL_XLIB_RENDERER_H__
|
||||
#define __COGL_XLIB_RENDERER_H__
|
||||
|
||||
#include <cogl/cogl.h>
|
||||
|
||||
#include <X11/Xlib.h>
|
||||
#include <glib.h>
|
||||
|
||||
#define __COGL_H_INSIDE__
|
||||
#include <cogl/cogl-renderer.h>
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
|
@ -24,11 +24,12 @@
|
||||
#ifndef __COGL_XLIB_H__
|
||||
#define __COGL_XLIB_H__
|
||||
|
||||
#include <glib.h>
|
||||
|
||||
#include <X11/Xlib.h>
|
||||
|
||||
#define __COGL_XLIB_H_INSIDE__
|
||||
|
||||
#include <cogl/cogl.h>
|
||||
#include <cogl/cogl-clutter-xlib.h>
|
||||
#include <cogl/cogl-xlib-renderer.h>
|
||||
|
||||
|
@ -25,8 +25,6 @@
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include "cogl.h"
|
||||
|
||||
#include <string.h>
|
||||
#include <math.h>
|
||||
#include <stdlib.h>
|
||||
@ -51,6 +49,7 @@
|
||||
#include "cogl-config-private.h"
|
||||
#include "cogl-private.h"
|
||||
#include "cogl1-context.h"
|
||||
#include "cogl-offscreen.h"
|
||||
|
||||
#ifndef GL_PACK_INVERT_MESA
|
||||
#define GL_PACK_INVERT_MESA 0x8758
|
||||
|
@ -25,7 +25,6 @@
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include "cogl.h"
|
||||
#include "cogl-clip-state-private.h"
|
||||
#include "cogl-framebuffer-private.h"
|
||||
#include "cogl-journal-private.h"
|
||||
|
@ -30,7 +30,6 @@
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include "cogl.h"
|
||||
#include "cogl-util.h"
|
||||
#include "cogl-object.h"
|
||||
#include "cogl-internal.h"
|
||||
|
@ -27,8 +27,6 @@
|
||||
|
||||
#include <string.h>
|
||||
|
||||
#include "cogl.h"
|
||||
|
||||
#include "cogl-private.h"
|
||||
#include "cogl-internal.h"
|
||||
#include "cogl-context-private.h"
|
||||
|
@ -30,7 +30,6 @@
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include "cogl.h"
|
||||
#include "cogl-private.h"
|
||||
#include "cogl-util.h"
|
||||
#include "cogl-bitmap.h"
|
||||
|
@ -27,7 +27,6 @@
|
||||
|
||||
#include <string.h>
|
||||
|
||||
#include "cogl.h"
|
||||
#include "cogl-internal.h"
|
||||
#include "cogl-context-private.h"
|
||||
#include "cogl-feature-private.h"
|
||||
|
@ -30,7 +30,6 @@
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include "cogl.h"
|
||||
#include "cogl-private.h"
|
||||
#include "cogl-util.h"
|
||||
#include "cogl-bitmap.h"
|
||||
|
@ -30,7 +30,6 @@
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include "cogl.h"
|
||||
#include "cogl-debug.h"
|
||||
#include "cogl-internal.h"
|
||||
#include "cogl-util.h"
|
||||
|
@ -26,7 +26,7 @@
|
||||
|
||||
#define __COGL_H_INSIDE__
|
||||
|
||||
#include <cogl/cogl.h>
|
||||
#include <cogl/cogl-types.h>
|
||||
|
||||
#ifdef COGL_ENABLE_EXPERIMENTAL_API
|
||||
|
||||
|
@ -28,8 +28,6 @@
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include "cogl.h"
|
||||
|
||||
#include "cogl-util.h"
|
||||
#include "cogl-winsys-egl-private.h"
|
||||
#include "cogl-winsys-private.h"
|
||||
|
@ -28,8 +28,6 @@
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include "cogl.h"
|
||||
|
||||
#include "cogl-util.h"
|
||||
#include "cogl-winsys-private.h"
|
||||
#include "cogl-feature-private.h"
|
||||
|
@ -36,6 +36,8 @@
|
||||
#include "cogl-texture-pixmap-x11-private.h"
|
||||
#endif
|
||||
|
||||
#include "cogl-poll.h"
|
||||
|
||||
GQuark
|
||||
_cogl_winsys_error_quark (void);
|
||||
|
||||
|
@ -26,7 +26,6 @@
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include "cogl.h"
|
||||
#include "cogl-context-private.h"
|
||||
|
||||
#include <gmodule.h>
|
||||
|
Loading…
Reference in New Issue
Block a user