1/* GDK - The GIMP Drawing Kit
2 *
3 * gdkglcontext-x11.c: X11 specific OpenGL wrappers
4 *
5 * Copyright © 2014 Emmanuele Bassi
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Library General Public License for more details.
16 *
17 * You should have received a copy of the GNU Library General Public
18 * License along with this library. If not, see <http://www.gnu.org/licenses/>.
19 */
20
21#include "config.h"
22
23#include "gdkglcontext-x11.h"
24#include "gdkdisplay-x11.h"
25#include "gdkprivate-x11.h"
26#include "gdkscreen-x11.h"
27
28#include "gdkx11display.h"
29#include "gdkx11glcontext.h"
30#include "gdkx11screen.h"
31#include "gdkx11property.h"
32#include <X11/Xatom.h>
33
34#include "gdkintl.h"
35
36#include <cairo-xlib.h>
37
38#include <epoxy/glx.h>
39
40G_DEFINE_ABSTRACT_TYPE (GdkX11GLContext, gdk_x11_gl_context, GDK_TYPE_GL_CONTEXT)
41
42static void
43gdk_x11_gl_context_class_init (GdkX11GLContextClass *klass)
44{
45}
46
47static void
48gdk_x11_gl_context_init (GdkX11GLContext *self)
49{
50}
51
52

source code of gtk/gdk/x11/gdkglcontext-x11.c