 d066e7541e
			
		
	
	d066e7541e
	
	
	
		
			
			The existence of OpenGL implementations that do not provide the full core profile compatibility because of reasons beyond the technical, like llvmpipe not implementing floating point buffers, makes the existence of GdkGLProfile and documenting the fact that we use core profiles a bit harder. Since we do not have any existing profile except the default, we can remove the GdkGLProfile and its related API from GDK and GTK+, and sweep the whole thing under the carpet, while we wait for an extension that lets us ask for the most compatible profile possible. https://bugzilla.gnome.org/show_bug.cgi?id=744407
		
			
				
	
	
		
			72 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			72 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /* GDK - The GIMP Drawing Kit
 | |
|  *
 | |
|  * gdkglcontext-x11.h: Private X11 specific OpenGL wrappers
 | |
|  * 
 | |
|  * Copyright © 2014  Emmanuele Bassi
 | |
|  *
 | |
|  * This library is free software; you can redistribute it and/or
 | |
|  * modify it under the terms of the GNU Library 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
 | |
|  * Library General Public License for more details.
 | |
|  *
 | |
|  * You should have received a copy of the GNU Library General Public
 | |
|  * License along with this library. If not, see <http://www.gnu.org/licenses/>.
 | |
|  */
 | |
| 
 | |
| #ifndef __GDK_X11_GL_CONTEXT__
 | |
| #define __GDK_X11_GL_CONTEXT__
 | |
| 
 | |
| #include <X11/X.h>
 | |
| #include <X11/Xlib.h>
 | |
| 
 | |
| #include <epoxy/gl.h>
 | |
| #include <epoxy/glx.h>
 | |
| 
 | |
| #include "gdkglcontextprivate.h"
 | |
| #include "gdkdisplayprivate.h"
 | |
| #include "gdkvisual.h"
 | |
| #include "gdkwindow.h"
 | |
| #include "gdkinternals.h"
 | |
| #include "gdkmain.h"
 | |
| 
 | |
| G_BEGIN_DECLS
 | |
| 
 | |
| struct _GdkX11GLContext
 | |
| {
 | |
|   GdkGLContext parent_instance;
 | |
| 
 | |
|   GLXContext glx_context;
 | |
|   GLXFBConfig glx_config;
 | |
|   GLXDrawable drawable;
 | |
| 
 | |
|   guint is_attached : 1;
 | |
|   guint is_direct : 1;
 | |
|   guint do_frame_sync : 1;
 | |
| 
 | |
|   guint do_blit_swap : 1;
 | |
| };
 | |
| 
 | |
| struct _GdkX11GLContextClass
 | |
| {
 | |
|   GdkGLContextClass parent_class;
 | |
| };
 | |
| 
 | |
| gboolean        gdk_x11_screen_init_gl                          (GdkScreen         *screen);
 | |
| GdkGLContext *  gdk_x11_window_create_gl_context                (GdkWindow         *window,
 | |
| 								 gboolean           attached,
 | |
|                                                                  GdkGLContext      *share,
 | |
|                                                                  GError           **error);
 | |
| void            gdk_x11_window_invalidate_for_new_frame         (GdkWindow         *window,
 | |
|                                                                  cairo_region_t    *update_area);
 | |
| gboolean        gdk_x11_display_make_gl_context_current         (GdkDisplay        *display,
 | |
|                                                                  GdkGLContext      *context);
 | |
| 
 | |
| G_END_DECLS
 | |
| 
 | |
| #endif /* __GDK_X11_GL_CONTEXT__ */
 |