Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 445982
Collapse All | Expand All

(-)a/clutter-gst/clutter-gst-video-sink.c (-1 / +17 lines)
Lines 42-47 Link Here
42
#include "config.h"
42
#include "config.h"
43
#endif
43
#endif
44
44
45
/*
46
 * cogl-1.12 exposes generic GL types in the API, but not the actual includes.
47
 */
48
#include <cogl/cogl.h>
49
50
#ifdef COGL_HAS_GLES
51
#include <GLES/gl.h>
52
#include <GLES/glext.h>
53
#elif COGL_HAS_GLES2
54
#include <GLES2/gl2.h>
55
#include <GLES2/gl2ext.h>
56
#elif COGL_HAS_GL
57
#include <GL/gl.h>
58
#else
59
#error Unknown cogl configuration
60
#endif
61
45
#include "clutter-gst-video-sink.h"
62
#include "clutter-gst-video-sink.h"
46
#include "clutter-gst-util.h"
63
#include "clutter-gst-util.h"
47
#include "clutter-gst-private.h"
64
#include "clutter-gst-private.h"
48
- 

Return to bug 445982