1 /* GdkGLExt - OpenGL Extension to GDK
2  * Copyright (C) 2002-2004  Naofumi Yasufuku
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307  USA.
17  */
18 
19 #ifndef __GDK_GL_PIXMAP_X11_H__
20 #define __GDK_GL_PIXMAP_X11_H__
21 
22 #include <gdk/gdkglpixmap.h>
23 #include <gdk/x11/gdkglx.h>
24 
25 G_BEGIN_DECLS
26 
27 typedef struct _GdkGLPixmapImplX11      GdkGLPixmapImplX11;
28 typedef struct _GdkGLPixmapImplX11Class GdkGLPixmapImplX11Class;
29 
30 #define GDK_TYPE_GL_PIXMAP_IMPL_X11              (gdk_gl_pixmap_impl_x11_get_type ())
31 #define GDK_GL_PIXMAP_IMPL_X11(object)           (G_TYPE_CHECK_INSTANCE_CAST ((object), GDK_TYPE_GL_PIXMAP_IMPL_X11, GdkGLPixmapImplX11))
32 #define GDK_GL_PIXMAP_IMPL_X11_CLASS(klass)      (G_TYPE_CHECK_CLASS_CAST ((klass), GDK_TYPE_GL_PIXMAP_IMPL_X11, GdkGLPixmapImplX11Class))
33 #define GDK_IS_GL_PIXMAP_IMPL_X11(object)        (G_TYPE_CHECK_INSTANCE_TYPE ((object), GDK_TYPE_GL_PIXMAP_IMPL_X11))
34 #define GDK_IS_GL_PIXMAP_IMPL_X11_CLASS(klass)   (G_TYPE_CHECK_CLASS_TYPE ((klass), GDK_TYPE_GL_PIXMAP_IMPL_X11))
35 #define GDK_GL_PIXMAP_IMPL_X11_GET_CLASS(obj)    (G_TYPE_INSTANCE_GET_CLASS ((obj), GDK_TYPE_GL_PIXMAP_IMPL_X11, GdkGLPixmapImplX11Class))
36 
37 struct _GdkGLPixmapImplX11
38 {
39   GdkGLPixmap parent_instance;
40 
41   GLXPixmap glxpixmap;
42 
43   GdkGLConfig *glconfig;
44 
45   guint is_destroyed : 1;
46 };
47 
48 struct _GdkGLPixmapImplX11Class
49 {
50   GdkGLPixmapClass parent_class;
51 };
52 
53 GType gdk_gl_pixmap_impl_x11_get_type (void);
54 
55 G_END_DECLS
56 
57 #endif /* __GDK_GL_PIXMAP_X11_H__ */
58