2014-12-17 04:32:04 +00:00
|
|
|
/* GDK - The GIMP Drawing Kit
|
|
|
|
*
|
|
|
|
* gdkglcontext-win32.c: Win32 specific OpenGL wrappers
|
|
|
|
*
|
|
|
|
* Copyright © 2014 Emmanuele Bassi
|
|
|
|
* Copyright © 2014 Alexander Larsson
|
|
|
|
* Copyright © 2014 Chun-wei Fan
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include "gdkprivate-win32.h"
|
2018-03-20 10:46:11 +00:00
|
|
|
#include "gdksurface-win32.h"
|
2014-12-17 04:32:04 +00:00
|
|
|
#include "gdkglcontext-win32.h"
|
|
|
|
#include "gdkdisplay-win32.h"
|
|
|
|
|
|
|
|
#include "gdkwin32display.h"
|
|
|
|
#include "gdkwin32glcontext.h"
|
|
|
|
#include "gdkwin32misc.h"
|
|
|
|
#include "gdkwin32screen.h"
|
2018-03-20 10:46:11 +00:00
|
|
|
#include "gdkwin32surface.h"
|
2014-12-17 04:32:04 +00:00
|
|
|
|
|
|
|
#include "gdkglcontext.h"
|
2018-03-20 10:46:11 +00:00
|
|
|
#include "gdksurface.h"
|
2014-12-17 04:32:04 +00:00
|
|
|
#include "gdkinternals.h"
|
|
|
|
#include "gdkintl.h"
|
|
|
|
|
|
|
|
#include <cairo.h>
|
|
|
|
#include <epoxy/wgl.h>
|
|
|
|
|
|
|
|
G_DEFINE_TYPE (GdkWin32GLContext, gdk_win32_gl_context, GDK_TYPE_GL_CONTEXT)
|
|
|
|
|
|
|
|
static void
|
|
|
|
_gdk_win32_gl_context_dispose (GObject *gobject)
|
|
|
|
{
|
|
|
|
GdkGLContext *context = GDK_GL_CONTEXT (gobject);
|
|
|
|
GdkWin32GLContext *context_win32 = GDK_WIN32_GL_CONTEXT (gobject);
|
|
|
|
GdkWin32Display *display_win32 = GDK_WIN32_DISPLAY (gdk_gl_context_get_display (context));
|
2018-03-28 04:59:47 +00:00
|
|
|
GdkSurface *surface = gdk_gl_context_get_surface (context);
|
2014-12-17 04:32:04 +00:00
|
|
|
|
|
|
|
if (context_win32->hglrc != NULL)
|
|
|
|
{
|
|
|
|
if (wglGetCurrentContext () == context_win32->hglrc)
|
|
|
|
wglMakeCurrent (NULL, NULL);
|
|
|
|
|
|
|
|
GDK_NOTE (OPENGL, g_print ("Destroying WGL context\n"));
|
|
|
|
|
|
|
|
wglDeleteContext (context_win32->hglrc);
|
|
|
|
context_win32->hglrc = NULL;
|
|
|
|
|
|
|
|
ReleaseDC (display_win32->gl_hwnd, context_win32->gl_hdc);
|
|
|
|
}
|
|
|
|
|
2018-03-28 04:59:47 +00:00
|
|
|
if (surface != NULL && surface->impl != NULL)
|
2016-03-05 03:34:16 +00:00
|
|
|
{
|
2018-03-28 04:59:47 +00:00
|
|
|
GdkSurfaceImplWin32 *impl = GDK_SURFACE_IMPL_WIN32 (surface->impl);
|
2016-03-05 03:34:16 +00:00
|
|
|
|
|
|
|
if (impl->suppress_layered > 0)
|
|
|
|
impl->suppress_layered--;
|
|
|
|
|
2018-03-28 04:59:47 +00:00
|
|
|
/* If we don't have any surface that forces layered windows off,
|
2016-03-05 03:34:16 +00:00
|
|
|
* trigger update_style_bits() to enable layered windows again
|
|
|
|
*/
|
|
|
|
if (impl->suppress_layered == 0)
|
2018-03-28 04:59:47 +00:00
|
|
|
_gdk_win32_surface_update_style_bits (surface);
|
2016-03-05 03:34:16 +00:00
|
|
|
}
|
|
|
|
|
2014-12-17 04:32:04 +00:00
|
|
|
G_OBJECT_CLASS (gdk_win32_gl_context_parent_class)->dispose (gobject);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2018-03-28 04:59:47 +00:00
|
|
|
gdk_gl_blit_region (GdkSurface *surface, cairo_region_t *region)
|
2014-12-17 04:32:04 +00:00
|
|
|
{
|
|
|
|
int n_rects, i;
|
2018-03-28 04:59:47 +00:00
|
|
|
int scale = gdk_surface_get_scale_factor (surface);
|
|
|
|
int wh = gdk_surface_get_height (surface);
|
2014-12-17 04:32:04 +00:00
|
|
|
cairo_rectangle_int_t rect;
|
|
|
|
|
|
|
|
n_rects = cairo_region_num_rectangles (region);
|
|
|
|
for (i = 0; i < n_rects; i++)
|
|
|
|
{
|
|
|
|
cairo_region_get_rectangle (region, i, &rect);
|
|
|
|
glScissor (rect.x * scale, (wh - rect.y - rect.height) * scale, rect.width * scale, rect.height * scale);
|
|
|
|
glBlitFramebuffer (rect.x * scale, (wh - rect.y - rect.height) * scale, (rect.x + rect.width) * scale, (wh - rect.y) * scale,
|
|
|
|
rect.x * scale, (wh - rect.y - rect.height) * scale, (rect.x + rect.width) * scale, (wh - rect.y) * scale,
|
|
|
|
GL_COLOR_BUFFER_BIT, GL_NEAREST);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-23 02:32:22 +00:00
|
|
|
static void
|
2016-12-01 00:38:20 +00:00
|
|
|
gdk_win32_gl_context_end_frame (GdkDrawContext *draw_context,
|
2018-04-23 21:26:14 +00:00
|
|
|
cairo_region_t *painted)
|
2014-12-17 04:32:04 +00:00
|
|
|
{
|
2016-12-01 00:38:20 +00:00
|
|
|
GdkGLContext *context = GDK_GL_CONTEXT (draw_context);
|
2014-12-17 04:32:04 +00:00
|
|
|
GdkWin32GLContext *context_win32 = GDK_WIN32_GL_CONTEXT (context);
|
2018-03-28 04:59:47 +00:00
|
|
|
GdkSurface *surface = gdk_gl_context_get_surface (context);
|
2014-12-17 04:32:04 +00:00
|
|
|
GdkWin32Display *display = (GDK_WIN32_DISPLAY (gdk_gl_context_get_display (context)));
|
|
|
|
gboolean can_wait = display->hasWglOMLSyncControl;
|
2016-12-06 06:37:42 +00:00
|
|
|
cairo_rectangle_int_t whole_window;
|
2016-12-01 00:38:20 +00:00
|
|
|
|
2018-04-23 21:26:14 +00:00
|
|
|
GDK_DRAW_CONTEXT_CLASS (gdk_win32_gl_context_parent_class)->end_frame (draw_context, painted);
|
2016-12-01 00:38:20 +00:00
|
|
|
if (gdk_gl_context_get_shared_context (context))
|
|
|
|
return;
|
|
|
|
|
2014-12-17 04:32:04 +00:00
|
|
|
gdk_gl_context_make_current (context);
|
|
|
|
|
|
|
|
if (context_win32->do_frame_sync)
|
|
|
|
{
|
|
|
|
if (context_win32->do_frame_sync)
|
|
|
|
{
|
|
|
|
glFinish ();
|
|
|
|
|
|
|
|
if (can_wait)
|
|
|
|
{
|
|
|
|
gint64 ust, msc, sbc;
|
|
|
|
|
|
|
|
wglGetSyncValuesOML (context_win32->gl_hdc, &ust, &msc, &sbc);
|
|
|
|
wglWaitForMscOML (context_win32->gl_hdc,
|
|
|
|
0,
|
|
|
|
2,
|
|
|
|
(msc + 1) % 2,
|
|
|
|
&ust, &msc, &sbc);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-28 04:59:47 +00:00
|
|
|
whole_window = (GdkRectangle) { 0, 0, gdk_surface_get_width (surface), gdk_surface_get_height (surface) };
|
2016-11-23 02:32:22 +00:00
|
|
|
if (cairo_region_contains_rectangle (painted, &whole_window) == CAIRO_REGION_OVERLAP_IN)
|
|
|
|
{
|
|
|
|
SwapBuffers (context_win32->gl_hdc);
|
|
|
|
}
|
|
|
|
else if (gdk_gl_context_has_framebuffer_blit (context))
|
2014-12-17 04:32:04 +00:00
|
|
|
{
|
|
|
|
glDrawBuffer(GL_FRONT);
|
|
|
|
glReadBuffer(GL_BACK);
|
2018-03-28 04:59:47 +00:00
|
|
|
gdk_gl_blit_region (surface, painted);
|
2014-12-17 04:32:04 +00:00
|
|
|
glDrawBuffer(GL_BACK);
|
|
|
|
glFlush();
|
|
|
|
|
|
|
|
if (gdk_gl_context_has_frame_terminator (context))
|
|
|
|
glFrameTerminatorGREMEDY ();
|
|
|
|
}
|
|
|
|
else
|
2016-11-23 02:32:22 +00:00
|
|
|
{
|
|
|
|
g_warning ("Need to swap whole buffer even thouigh not everything was redrawn. Expect artifacts.");
|
|
|
|
SwapBuffers (context_win32->gl_hdc);
|
|
|
|
}
|
2014-12-17 04:32:04 +00:00
|
|
|
}
|
|
|
|
|
2016-11-23 02:32:22 +00:00
|
|
|
static void
|
2016-12-01 00:38:20 +00:00
|
|
|
gdk_win32_gl_context_begin_frame (GdkDrawContext *draw_context,
|
2016-11-23 02:32:22 +00:00
|
|
|
cairo_region_t *update_area)
|
2014-12-17 04:32:04 +00:00
|
|
|
{
|
2016-12-01 00:38:20 +00:00
|
|
|
GdkGLContext *context = GDK_GL_CONTEXT (draw_context);
|
2018-03-28 04:59:47 +00:00
|
|
|
GdkSurface *surface;
|
2014-12-17 04:32:04 +00:00
|
|
|
|
2016-12-06 06:37:42 +00:00
|
|
|
GDK_DRAW_CONTEXT_CLASS (gdk_win32_gl_context_parent_class)->begin_frame (draw_context, update_area);
|
2016-12-01 00:38:20 +00:00
|
|
|
if (gdk_gl_context_get_shared_context (context))
|
|
|
|
return;
|
|
|
|
|
2016-11-23 02:32:22 +00:00
|
|
|
if (gdk_gl_context_has_framebuffer_blit (context))
|
2014-12-17 04:32:04 +00:00
|
|
|
return;
|
|
|
|
|
2016-11-23 02:32:22 +00:00
|
|
|
/* If nothing else is known, repaint everything so that the back
|
|
|
|
buffer is fully up-to-date for the swapbuffer */
|
2018-03-28 04:59:47 +00:00
|
|
|
surface = gdk_gl_context_get_surface (context);
|
2016-11-23 02:32:22 +00:00
|
|
|
cairo_region_union_rectangle (update_area, &(GdkRectangle) {
|
|
|
|
0, 0,
|
2018-03-28 04:59:47 +00:00
|
|
|
gdk_surface_get_width (surface),
|
|
|
|
gdk_surface_get_height (surface) });
|
2014-12-17 04:32:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
ATOM wc_atom;
|
|
|
|
HWND hwnd;
|
|
|
|
HDC hdc;
|
|
|
|
HGLRC hglrc;
|
|
|
|
gboolean inited;
|
|
|
|
} GdkWGLDummy;
|
|
|
|
|
|
|
|
static void
|
|
|
|
_destroy_dummy_gl_context (GdkWGLDummy dummy)
|
|
|
|
{
|
|
|
|
if (dummy.hglrc != NULL)
|
|
|
|
{
|
|
|
|
wglDeleteContext (dummy.hglrc);
|
|
|
|
dummy.hglrc = NULL;
|
|
|
|
}
|
|
|
|
if (dummy.hdc != NULL)
|
|
|
|
{
|
|
|
|
DeleteDC (dummy.hdc);
|
|
|
|
dummy.hdc = NULL;
|
|
|
|
}
|
|
|
|
if (dummy.hwnd != NULL)
|
|
|
|
{
|
|
|
|
DestroyWindow (dummy.hwnd);
|
|
|
|
dummy.hwnd = NULL;
|
|
|
|
}
|
|
|
|
if (dummy.wc_atom != 0)
|
|
|
|
{
|
|
|
|
UnregisterClass (MAKEINTATOM (dummy.wc_atom), GetModuleHandle (NULL));
|
|
|
|
dummy.wc_atom = 0;
|
|
|
|
}
|
|
|
|
dummy.inited = FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Yup, we need to create a dummy window for the dummy WGL context */
|
|
|
|
static void
|
|
|
|
_get_dummy_window_hwnd (GdkWGLDummy *dummy)
|
|
|
|
{
|
|
|
|
WNDCLASSEX dummy_wc;
|
|
|
|
|
|
|
|
memset (&dummy_wc, 0, sizeof (WNDCLASSEX));
|
|
|
|
|
|
|
|
dummy_wc.cbSize = sizeof( WNDCLASSEX );
|
|
|
|
dummy_wc.style = CS_OWNDC;
|
|
|
|
dummy_wc.lpfnWndProc = (WNDPROC) DefWindowProc;
|
|
|
|
dummy_wc.cbClsExtra = 0;
|
|
|
|
dummy_wc.cbWndExtra = 0;
|
|
|
|
dummy_wc.hInstance = GetModuleHandle( NULL );
|
|
|
|
dummy_wc.hIcon = 0;
|
|
|
|
dummy_wc.hCursor = NULL;
|
|
|
|
dummy_wc.hbrBackground = 0;
|
|
|
|
dummy_wc.lpszMenuName = 0;
|
|
|
|
dummy_wc.lpszClassName = "dummy";
|
|
|
|
dummy_wc.hIconSm = 0;
|
|
|
|
|
|
|
|
dummy->wc_atom = RegisterClassEx (&dummy_wc);
|
|
|
|
|
|
|
|
dummy->hwnd =
|
|
|
|
CreateWindowEx (WS_EX_APPWINDOW,
|
|
|
|
MAKEINTATOM (dummy->wc_atom),
|
|
|
|
"",
|
|
|
|
WS_OVERLAPPEDWINDOW | WS_CLIPCHILDREN | WS_CLIPSIBLINGS,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
GetModuleHandle (NULL),
|
|
|
|
NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static gint
|
2016-10-14 11:04:49 +00:00
|
|
|
_gdk_init_dummy_context (GdkWGLDummy *dummy);
|
|
|
|
|
|
|
|
#define PIXEL_ATTRIBUTES 17
|
|
|
|
|
|
|
|
static gint
|
|
|
|
_get_wgl_pfd (HDC hdc,
|
|
|
|
PIXELFORMATDESCRIPTOR *pfd,
|
|
|
|
GdkWin32Display *display)
|
2014-12-17 04:32:04 +00:00
|
|
|
{
|
|
|
|
gint best_pf = 0;
|
|
|
|
|
|
|
|
pfd->nSize = sizeof (PIXELFORMATDESCRIPTOR);
|
|
|
|
|
2016-10-14 11:04:49 +00:00
|
|
|
if (display != NULL && display->hasWglARBPixelFormat)
|
|
|
|
{
|
|
|
|
GdkWGLDummy dummy;
|
|
|
|
UINT num_formats;
|
|
|
|
gint colorbits = GetDeviceCaps (hdc, BITSPIXEL);
|
|
|
|
guint extra_fields = 1;
|
|
|
|
gint i = 0;
|
|
|
|
int pixelAttribs[PIXEL_ATTRIBUTES];
|
|
|
|
|
2017-10-30 07:00:28 +00:00
|
|
|
/* Save up the HDC and HGLRC that we are currently using, to restore back to it when we are done here */
|
|
|
|
HDC hdc_current = wglGetCurrentDC ();
|
|
|
|
HGLRC hglrc_current = wglGetCurrentContext ();
|
|
|
|
|
2016-10-14 11:04:49 +00:00
|
|
|
if (display->hasWglARBmultisample)
|
|
|
|
{
|
|
|
|
/* 2 pairs of values needed for multisampling/AA support */
|
|
|
|
extra_fields += 2 * 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Update PIXEL_ATTRIBUTES above if any groups are added here! */
|
|
|
|
/* one group contains a value pair for both pixelAttribs and pixelAttribsNoAlpha */
|
|
|
|
pixelAttribs[i] = WGL_DRAW_TO_WINDOW_ARB;
|
|
|
|
pixelAttribs[i++] = GL_TRUE;
|
|
|
|
|
|
|
|
pixelAttribs[i++] = WGL_SUPPORT_OPENGL_ARB;
|
|
|
|
pixelAttribs[i++] = GL_TRUE;
|
|
|
|
|
|
|
|
pixelAttribs[i++] = WGL_DOUBLE_BUFFER_ARB;
|
|
|
|
pixelAttribs[i++] = GL_TRUE;
|
|
|
|
|
|
|
|
pixelAttribs[i++] = WGL_ACCELERATION_ARB;
|
|
|
|
pixelAttribs[i++] = WGL_FULL_ACCELERATION_ARB;
|
|
|
|
|
|
|
|
pixelAttribs[i++] = WGL_PIXEL_TYPE_ARB;
|
|
|
|
pixelAttribs[i++] = WGL_TYPE_RGBA_ARB;
|
|
|
|
|
|
|
|
pixelAttribs[i++] = WGL_COLOR_BITS_ARB;
|
|
|
|
pixelAttribs[i++] = colorbits;
|
|
|
|
|
|
|
|
/* end of "Update PIXEL_ATTRIBUTES above if any groups are added here!" */
|
|
|
|
|
|
|
|
if (display->hasWglARBmultisample)
|
|
|
|
{
|
|
|
|
pixelAttribs[i++] = WGL_SAMPLE_BUFFERS_ARB;
|
|
|
|
pixelAttribs[i++] = 1;
|
|
|
|
|
|
|
|
pixelAttribs[i++] = WGL_SAMPLES_ARB;
|
|
|
|
pixelAttribs[i++] = 8;
|
|
|
|
}
|
|
|
|
|
|
|
|
pixelAttribs[i++] = 0; /* end of pixelAttribs */
|
|
|
|
|
|
|
|
memset (&dummy, 0, sizeof (GdkWGLDummy));
|
|
|
|
|
|
|
|
/* acquire and cache dummy Window (HWND & HDC) and
|
|
|
|
* dummy GL Context, we need it for wglChoosePixelFormatARB()
|
|
|
|
*/
|
|
|
|
best_pf = _gdk_init_dummy_context (&dummy);
|
|
|
|
|
|
|
|
if (best_pf == 0 || !wglMakeCurrent (dummy.hdc, dummy.hglrc))
|
2017-10-30 07:00:28 +00:00
|
|
|
{
|
|
|
|
wglMakeCurrent (hdc_current, hglrc_current);
|
|
|
|
return 0;
|
|
|
|
}
|
2016-10-14 11:04:49 +00:00
|
|
|
|
|
|
|
wglChoosePixelFormatARB (hdc,
|
|
|
|
pixelAttribs,
|
|
|
|
NULL,
|
|
|
|
1,
|
|
|
|
&best_pf,
|
|
|
|
&num_formats);
|
|
|
|
|
2017-10-30 07:00:28 +00:00
|
|
|
/* Go back to the HDC that we were using, since we are done with the dummy HDC and GL Context */
|
|
|
|
wglMakeCurrent (hdc_current, hglrc_current);
|
2016-10-14 11:04:49 +00:00
|
|
|
_destroy_dummy_gl_context (dummy);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
pfd->nVersion = 1;
|
|
|
|
pfd->dwFlags = PFD_SUPPORT_OPENGL | PFD_DRAW_TO_WINDOW | PFD_DOUBLEBUFFER;
|
|
|
|
pfd->iPixelType = PFD_TYPE_RGBA;
|
|
|
|
pfd->cColorBits = GetDeviceCaps (hdc, BITSPIXEL);
|
|
|
|
pfd->cAlphaBits = 8;
|
|
|
|
pfd->dwLayerMask = PFD_MAIN_PLANE;
|
|
|
|
|
|
|
|
best_pf = ChoosePixelFormat (hdc, pfd);
|
|
|
|
}
|
2014-12-17 04:32:04 +00:00
|
|
|
|
|
|
|
return best_pf;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* in WGL, for many OpenGL items, we need a dummy WGL context, so create
|
|
|
|
* one and cache it for later use
|
|
|
|
*/
|
|
|
|
static gint
|
2016-10-27 21:27:49 +00:00
|
|
|
_gdk_init_dummy_context (GdkWGLDummy *dummy)
|
2014-12-17 04:32:04 +00:00
|
|
|
{
|
|
|
|
PIXELFORMATDESCRIPTOR pfd;
|
|
|
|
gboolean set_pixel_format_result = FALSE;
|
|
|
|
gint best_idx = 0;
|
|
|
|
|
|
|
|
_get_dummy_window_hwnd (dummy);
|
|
|
|
|
|
|
|
dummy->hdc = GetDC (dummy->hwnd);
|
|
|
|
memset (&pfd, 0, sizeof (PIXELFORMATDESCRIPTOR));
|
|
|
|
|
2016-10-14 11:04:49 +00:00
|
|
|
best_idx = _get_wgl_pfd (dummy->hdc, &pfd, NULL);
|
2014-12-17 04:32:04 +00:00
|
|
|
|
|
|
|
if (best_idx != 0)
|
|
|
|
set_pixel_format_result = SetPixelFormat (dummy->hdc,
|
|
|
|
best_idx,
|
|
|
|
&pfd);
|
|
|
|
|
|
|
|
if (best_idx == 0 || !set_pixel_format_result)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
dummy->hglrc = wglCreateContext (dummy->hdc);
|
|
|
|
if (dummy->hglrc == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
dummy->inited = TRUE;
|
|
|
|
|
|
|
|
return best_idx;
|
|
|
|
}
|
|
|
|
|
2017-10-30 07:00:28 +00:00
|
|
|
static gboolean
|
2016-10-27 21:27:49 +00:00
|
|
|
_gdk_win32_display_init_gl (GdkDisplay *display)
|
2014-12-17 04:32:04 +00:00
|
|
|
{
|
|
|
|
GdkWin32Display *display_win32 = GDK_WIN32_DISPLAY (display);
|
|
|
|
gint best_idx = 0;
|
|
|
|
GdkWGLDummy dummy;
|
|
|
|
|
|
|
|
if (display_win32->have_wgl)
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
memset (&dummy, 0, sizeof (GdkWGLDummy));
|
|
|
|
|
|
|
|
/* acquire and cache dummy Window (HWND & HDC) and
|
|
|
|
* dummy GL Context, it is used to query functions
|
|
|
|
* and used for other stuff as well
|
|
|
|
*/
|
2016-10-27 21:27:49 +00:00
|
|
|
best_idx = _gdk_init_dummy_context (&dummy);
|
2014-12-17 04:32:04 +00:00
|
|
|
|
|
|
|
if (best_idx == 0 || !wglMakeCurrent (dummy.hdc, dummy.hglrc))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
display_win32->have_wgl = TRUE;
|
|
|
|
display_win32->gl_version = epoxy_gl_version ();
|
|
|
|
|
|
|
|
display_win32->hasWglARBCreateContext =
|
|
|
|
epoxy_has_wgl_extension (dummy.hdc, "WGL_ARB_create_context");
|
|
|
|
display_win32->hasWglEXTSwapControl =
|
|
|
|
epoxy_has_wgl_extension (dummy.hdc, "WGL_EXT_swap_control");
|
|
|
|
display_win32->hasWglOMLSyncControl =
|
|
|
|
epoxy_has_wgl_extension (dummy.hdc, "WGL_OML_sync_control");
|
2016-10-14 11:04:49 +00:00
|
|
|
display_win32->hasWglARBPixelFormat =
|
|
|
|
epoxy_has_wgl_extension (dummy.hdc, "WGL_ARB_pixel_format");
|
|
|
|
display_win32->hasWglARBmultisample =
|
|
|
|
epoxy_has_wgl_extension (dummy.hdc, "WGL_ARB_multisample");
|
2014-12-17 04:32:04 +00:00
|
|
|
|
|
|
|
GDK_NOTE (OPENGL,
|
|
|
|
g_print ("WGL API version %d.%d found\n"
|
|
|
|
" - Vendor: %s\n"
|
|
|
|
" - Checked extensions:\n"
|
2017-10-28 22:07:34 +00:00
|
|
|
"\t* WGL_ARB_pixel_format: %s\n"
|
2014-12-17 04:32:04 +00:00
|
|
|
"\t* WGL_ARB_create_context: %s\n"
|
|
|
|
"\t* WGL_EXT_swap_control: %s\n"
|
2017-10-28 22:07:34 +00:00
|
|
|
"\t* WGL_OML_sync_control: %s\n"
|
2016-10-14 11:04:49 +00:00
|
|
|
"\t* WGL_ARB_multisample: %s\n",
|
2014-12-17 04:32:04 +00:00
|
|
|
display_win32->gl_version / 10,
|
|
|
|
display_win32->gl_version % 10,
|
|
|
|
glGetString (GL_VENDOR),
|
2016-10-14 11:04:49 +00:00
|
|
|
display_win32->hasWglARBPixelFormat ? "yes" : "no",
|
2014-12-17 04:32:04 +00:00
|
|
|
display_win32->hasWglARBCreateContext ? "yes" : "no",
|
|
|
|
display_win32->hasWglEXTSwapControl ? "yes" : "no",
|
2016-10-14 11:04:49 +00:00
|
|
|
display_win32->hasWglOMLSyncControl ? "yes" : "no",
|
|
|
|
display_win32->hasWglARBmultisample ? "yes" : "no"));
|
2014-12-17 04:32:04 +00:00
|
|
|
|
|
|
|
wglMakeCurrent (NULL, NULL);
|
|
|
|
_destroy_dummy_gl_context (dummy);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2016-10-14 11:04:49 +00:00
|
|
|
/* Setup the legacy context after creating it */
|
|
|
|
static gboolean
|
|
|
|
_ensure_legacy_gl_context (HDC hdc,
|
|
|
|
HGLRC hglrc_legacy,
|
|
|
|
GdkGLContext *share)
|
|
|
|
{
|
|
|
|
GdkWin32GLContext *context_win32;
|
|
|
|
|
|
|
|
if (!wglMakeCurrent (hdc, hglrc_legacy))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (share != NULL)
|
|
|
|
{
|
|
|
|
context_win32 = GDK_WIN32_GL_CONTEXT (share);
|
|
|
|
|
|
|
|
return wglShareLists (hglrc_legacy, context_win32->hglrc);
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2014-12-17 04:32:04 +00:00
|
|
|
static HGLRC
|
2016-10-14 11:04:49 +00:00
|
|
|
_create_gl_context_with_attribs (HDC hdc,
|
|
|
|
HGLRC hglrc_base,
|
|
|
|
GdkGLContext *share,
|
|
|
|
int flags,
|
|
|
|
int major,
|
|
|
|
int minor,
|
|
|
|
gboolean *is_legacy)
|
2014-12-17 04:32:04 +00:00
|
|
|
{
|
2015-02-12 17:30:42 +00:00
|
|
|
HGLRC hglrc;
|
|
|
|
GdkWin32GLContext *context_win32;
|
2014-12-17 04:32:04 +00:00
|
|
|
|
2016-10-14 11:04:49 +00:00
|
|
|
/* if we have wglCreateContextAttribsARB(), create a
|
|
|
|
* context with the compatibility profile if a legacy
|
|
|
|
* context is requested, or when we go into fallback mode
|
|
|
|
*/
|
|
|
|
int profile = *is_legacy ? WGL_CONTEXT_COMPATIBILITY_PROFILE_BIT_ARB :
|
|
|
|
WGL_CONTEXT_CORE_PROFILE_BIT_ARB;
|
|
|
|
|
|
|
|
int attribs[] = {
|
|
|
|
WGL_CONTEXT_PROFILE_MASK_ARB, profile,
|
|
|
|
WGL_CONTEXT_MAJOR_VERSION_ARB, *is_legacy ? 3 : major,
|
|
|
|
WGL_CONTEXT_MINOR_VERSION_ARB, *is_legacy ? 0 : minor,
|
|
|
|
WGL_CONTEXT_FLAGS_ARB, flags,
|
2015-02-12 17:30:42 +00:00
|
|
|
0
|
|
|
|
};
|
2014-12-17 04:32:04 +00:00
|
|
|
|
2015-02-12 17:30:42 +00:00
|
|
|
if (share != NULL)
|
|
|
|
context_win32 = GDK_WIN32_GL_CONTEXT (share);
|
2014-12-17 04:32:04 +00:00
|
|
|
|
2015-02-12 17:30:42 +00:00
|
|
|
hglrc = wglCreateContextAttribsARB (hdc,
|
|
|
|
share != NULL ? context_win32->hglrc : NULL,
|
|
|
|
attribs);
|
2014-12-17 04:32:04 +00:00
|
|
|
|
2015-02-12 17:30:42 +00:00
|
|
|
return hglrc;
|
2014-12-17 04:32:04 +00:00
|
|
|
}
|
|
|
|
|
2016-10-14 11:04:49 +00:00
|
|
|
static HGLRC
|
|
|
|
_create_gl_context (HDC hdc,
|
|
|
|
GdkGLContext *share,
|
|
|
|
int flags,
|
|
|
|
int major,
|
|
|
|
int minor,
|
|
|
|
gboolean *is_legacy,
|
|
|
|
gboolean hasWglARBCreateContext)
|
|
|
|
{
|
|
|
|
/* We need a legacy context for *all* cases */
|
|
|
|
HGLRC hglrc_base = wglCreateContext (hdc);
|
|
|
|
gboolean success = TRUE;
|
|
|
|
|
2017-10-30 07:00:28 +00:00
|
|
|
/* Save up the HDC and HGLRC that we are currently using, to restore back to it when we are done here */
|
|
|
|
HDC hdc_current = wglGetCurrentDC ();
|
|
|
|
HGLRC hglrc_current = wglGetCurrentContext ();
|
|
|
|
|
2016-10-14 11:04:49 +00:00
|
|
|
/* if we have no wglCreateContextAttribsARB(), return the legacy context when all is set */
|
|
|
|
if (*is_legacy && !hasWglARBCreateContext)
|
|
|
|
{
|
|
|
|
if (_ensure_legacy_gl_context (hdc, hglrc_base, share))
|
2017-10-30 07:00:28 +00:00
|
|
|
{
|
|
|
|
wglMakeCurrent (hdc_current, hglrc_current);
|
|
|
|
return hglrc_base;
|
|
|
|
}
|
2016-10-14 11:04:49 +00:00
|
|
|
|
|
|
|
success = FALSE;
|
|
|
|
goto gl_fail;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
HGLRC hglrc;
|
|
|
|
|
|
|
|
if (!wglMakeCurrent (hdc, hglrc_base))
|
|
|
|
{
|
|
|
|
success = FALSE;
|
|
|
|
goto gl_fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
hglrc = _create_gl_context_with_attribs (hdc,
|
|
|
|
hglrc_base,
|
|
|
|
share,
|
|
|
|
flags,
|
|
|
|
major,
|
|
|
|
minor,
|
|
|
|
is_legacy);
|
|
|
|
|
|
|
|
/* return the legacy context we have if it could be setup properly, in case the 3.0+ context creation failed */
|
|
|
|
if (hglrc == NULL)
|
|
|
|
{
|
|
|
|
if (!(*is_legacy))
|
|
|
|
{
|
|
|
|
/* If we aren't using a legacy context in the beginning, try again with a compatibility profile 3.0 context */
|
|
|
|
hglrc = _create_gl_context_with_attribs (hdc,
|
|
|
|
hglrc_base,
|
|
|
|
share,
|
|
|
|
flags,
|
|
|
|
0, 0,
|
|
|
|
is_legacy);
|
|
|
|
|
|
|
|
*is_legacy = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (hglrc == NULL)
|
|
|
|
{
|
|
|
|
if (!_ensure_legacy_gl_context (hdc, hglrc_base, share))
|
|
|
|
success = FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (success)
|
|
|
|
GDK_NOTE (OPENGL, g_print ("Using legacy context as fallback\n"));
|
|
|
|
}
|
|
|
|
|
|
|
|
gl_fail:
|
2017-10-30 07:00:28 +00:00
|
|
|
|
|
|
|
if (!success)
|
2016-10-14 11:04:49 +00:00
|
|
|
{
|
|
|
|
wglMakeCurrent (NULL, NULL);
|
|
|
|
wglDeleteContext (hglrc_base);
|
2017-10-30 07:00:28 +00:00
|
|
|
return NULL;
|
2016-10-14 11:04:49 +00:00
|
|
|
}
|
|
|
|
|
2017-10-30 07:00:28 +00:00
|
|
|
wglMakeCurrent (hdc_current, hglrc_current);
|
2016-10-14 11:04:49 +00:00
|
|
|
|
|
|
|
if (hglrc != NULL)
|
2017-10-30 07:00:28 +00:00
|
|
|
{
|
|
|
|
wglDeleteContext (hglrc_base);
|
|
|
|
return hglrc;
|
|
|
|
}
|
2016-10-14 11:04:49 +00:00
|
|
|
|
|
|
|
return hglrc_base;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-17 04:32:04 +00:00
|
|
|
static gboolean
|
2016-10-14 11:04:49 +00:00
|
|
|
_set_pixformat_for_hdc (HDC hdc,
|
|
|
|
gint *best_idx,
|
|
|
|
GdkWin32Display *display)
|
2014-12-17 04:32:04 +00:00
|
|
|
{
|
|
|
|
PIXELFORMATDESCRIPTOR pfd;
|
|
|
|
gboolean set_pixel_format_result = FALSE;
|
|
|
|
|
|
|
|
/* one is only allowed to call SetPixelFormat(), and so ChoosePixelFormat()
|
|
|
|
* one single time per window HDC
|
|
|
|
*/
|
2016-10-14 11:04:49 +00:00
|
|
|
*best_idx = _get_wgl_pfd (hdc, &pfd, display);
|
|
|
|
|
2014-12-17 04:32:04 +00:00
|
|
|
if (*best_idx != 0)
|
|
|
|
set_pixel_format_result = SetPixelFormat (hdc, *best_idx, &pfd);
|
|
|
|
|
|
|
|
/* ChoosePixelFormat() or SetPixelFormat() failed, bail out */
|
|
|
|
if (*best_idx == 0 || !set_pixel_format_result)
|
|
|
|
return FALSE;
|
2016-10-14 11:04:49 +00:00
|
|
|
|
2014-12-17 04:32:04 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2016-11-23 02:32:22 +00:00
|
|
|
static gboolean
|
|
|
|
gdk_win32_gl_context_realize (GdkGLContext *context,
|
|
|
|
GError **error)
|
2015-01-30 05:53:31 +00:00
|
|
|
{
|
|
|
|
GdkGLContext *share = gdk_gl_context_get_shared_context (context);
|
|
|
|
GdkWin32GLContext *context_win32 = GDK_WIN32_GL_CONTEXT (context);
|
|
|
|
|
|
|
|
/* These are the real WGL context items that we will want to use later */
|
|
|
|
HGLRC hglrc;
|
|
|
|
gint pixel_format;
|
2016-10-14 11:04:49 +00:00
|
|
|
gboolean debug_bit, compat_bit, legacy_bit;
|
2015-01-30 05:53:31 +00:00
|
|
|
|
2015-02-13 10:36:34 +00:00
|
|
|
/* request flags and specific versions for core (3.2+) WGL context */
|
|
|
|
gint flags = 0;
|
|
|
|
gint glver_major = 0;
|
|
|
|
gint glver_minor = 0;
|
|
|
|
|
2018-03-28 04:59:47 +00:00
|
|
|
GdkSurface *surface = gdk_gl_context_get_surface (context);
|
|
|
|
GdkSurfaceImplWin32 *impl = GDK_SURFACE_IMPL_WIN32 (surface->impl);
|
|
|
|
GdkWin32Display *win32_display = GDK_WIN32_DISPLAY (gdk_surface_get_display (surface));
|
2016-03-05 03:34:16 +00:00
|
|
|
|
2015-01-30 05:53:31 +00:00
|
|
|
if (!_set_pixformat_for_hdc (context_win32->gl_hdc,
|
2016-10-14 11:04:49 +00:00
|
|
|
&pixel_format,
|
|
|
|
win32_display))
|
2015-01-30 05:53:31 +00:00
|
|
|
{
|
|
|
|
g_set_error_literal (error, GDK_GL_ERROR,
|
|
|
|
GDK_GL_ERROR_UNSUPPORTED_FORMAT,
|
|
|
|
_("No available configurations for the given pixel format"));
|
2017-10-30 07:00:28 +00:00
|
|
|
|
2015-01-30 05:53:31 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2015-02-12 17:30:42 +00:00
|
|
|
gdk_gl_context_get_required_version (context, &glver_major, &glver_minor);
|
|
|
|
debug_bit = gdk_gl_context_get_debug_enabled (context);
|
|
|
|
compat_bit = gdk_gl_context_get_forward_compatible (context);
|
2015-01-30 05:53:31 +00:00
|
|
|
|
2016-10-14 11:04:49 +00:00
|
|
|
/* if there isn't wglCreateContextAttribsARB(), or if GDK_GL_LEGACY is set, we default to a legacy context */
|
|
|
|
legacy_bit = !win32_display->hasWglARBCreateContext ||
|
|
|
|
g_getenv ("GDK_GL_LEGACY") != NULL;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* A legacy context cannot be shared with core profile ones, so this means we
|
|
|
|
* must stick to a legacy context if the shared context is a legacy context
|
|
|
|
*/
|
|
|
|
if (share != NULL && gdk_gl_context_is_legacy (share))
|
|
|
|
legacy_bit = TRUE;
|
|
|
|
|
2015-02-12 17:30:42 +00:00
|
|
|
if (debug_bit)
|
|
|
|
flags |= WGL_CONTEXT_DEBUG_BIT_ARB;
|
|
|
|
if (compat_bit)
|
|
|
|
flags |= WGL_CONTEXT_FORWARD_COMPATIBLE_BIT_ARB;
|
|
|
|
|
|
|
|
GDK_NOTE (OPENGL,
|
2016-10-14 11:04:49 +00:00
|
|
|
g_print ("Creating %s WGL context (version:%d.%d, debug:%s, forward:%s, legacy: %s)\n",
|
|
|
|
compat_bit ? "core" : "compat",
|
|
|
|
glver_major,
|
|
|
|
glver_minor,
|
|
|
|
debug_bit ? "yes" : "no",
|
|
|
|
compat_bit ? "yes" : "no",
|
|
|
|
legacy_bit ? "yes" : "no"));
|
2015-02-12 17:30:42 +00:00
|
|
|
|
|
|
|
hglrc = _create_gl_context (context_win32->gl_hdc,
|
|
|
|
share,
|
|
|
|
flags,
|
|
|
|
glver_major,
|
2016-10-14 11:04:49 +00:00
|
|
|
glver_minor,
|
|
|
|
&legacy_bit,
|
|
|
|
win32_display->hasWglARBCreateContext);
|
|
|
|
|
2015-01-30 05:53:31 +00:00
|
|
|
if (hglrc == NULL)
|
|
|
|
{
|
|
|
|
g_set_error_literal (error, GDK_GL_ERROR,
|
|
|
|
GDK_GL_ERROR_NOT_AVAILABLE,
|
|
|
|
_("Unable to create a GL context"));
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
GDK_NOTE (OPENGL,
|
|
|
|
g_print ("Created WGL context[%p], pixel_format=%d\n",
|
|
|
|
hglrc,
|
|
|
|
pixel_format));
|
|
|
|
|
|
|
|
context_win32->hglrc = hglrc;
|
|
|
|
|
2016-03-05 03:34:16 +00:00
|
|
|
/* OpenGL does not work with WS_EX_LAYERED enabled, so we need to
|
|
|
|
* disable WS_EX_LAYERED when we acquire a valid HGLRC
|
|
|
|
*/
|
|
|
|
impl->suppress_layered++;
|
|
|
|
|
2018-03-28 04:59:47 +00:00
|
|
|
/* if this is the first time a GL context is acquired for the surface,
|
2016-03-05 03:34:16 +00:00
|
|
|
* disable layered windows by triggering update_style_bits()
|
|
|
|
*/
|
|
|
|
if (impl->suppress_layered == 1)
|
2018-03-28 04:59:47 +00:00
|
|
|
_gdk_win32_surface_update_style_bits (surface);
|
2016-03-05 03:34:16 +00:00
|
|
|
|
2016-10-14 11:04:49 +00:00
|
|
|
/* Ensure that any other context is created with a legacy bit set */
|
|
|
|
gdk_gl_context_set_is_legacy (context, legacy_bit);
|
|
|
|
|
2015-01-30 05:53:31 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2016-11-23 02:32:22 +00:00
|
|
|
static void
|
|
|
|
gdk_win32_gl_context_class_init (GdkWin32GLContextClass *klass)
|
|
|
|
{
|
2016-12-06 06:37:42 +00:00
|
|
|
GdkGLContextClass *gl_context_class = GDK_GL_CONTEXT_CLASS(klass);
|
|
|
|
GdkDrawContextClass *draw_context_class = GDK_DRAW_CONTEXT_CLASS(klass);
|
2016-11-23 02:32:22 +00:00
|
|
|
GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
|
|
|
|
|
2016-12-06 06:37:42 +00:00
|
|
|
gl_context_class->realize = gdk_win32_gl_context_realize;
|
|
|
|
|
|
|
|
draw_context_class->begin_frame = gdk_win32_gl_context_begin_frame;
|
|
|
|
draw_context_class->end_frame = gdk_win32_gl_context_end_frame;
|
2016-11-23 02:32:22 +00:00
|
|
|
|
|
|
|
gobject_class->dispose = _gdk_win32_gl_context_dispose;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gdk_win32_gl_context_init (GdkWin32GLContext *self)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-12-17 04:32:04 +00:00
|
|
|
GdkGLContext *
|
2018-03-28 04:59:47 +00:00
|
|
|
_gdk_win32_surface_create_gl_context (GdkSurface *surface,
|
2014-12-17 04:32:04 +00:00
|
|
|
gboolean attached,
|
|
|
|
GdkGLContext *share,
|
|
|
|
GError **error)
|
|
|
|
{
|
2018-03-28 04:59:47 +00:00
|
|
|
GdkDisplay *display = gdk_surface_get_display (surface);
|
|
|
|
GdkWin32Display *display_win32 = GDK_WIN32_DISPLAY (display);
|
2014-12-17 04:32:04 +00:00
|
|
|
GdkWin32GLContext *context = NULL;
|
|
|
|
|
2015-01-30 05:53:31 +00:00
|
|
|
/* Acquire and store up the Windows-specific HWND and HDC */
|
2014-12-17 04:32:04 +00:00
|
|
|
HWND hwnd;
|
|
|
|
HDC hdc;
|
|
|
|
|
2016-10-27 21:27:49 +00:00
|
|
|
if (!_gdk_win32_display_init_gl (display))
|
2014-12-17 04:32:04 +00:00
|
|
|
{
|
|
|
|
g_set_error_literal (error, GDK_GL_ERROR,
|
|
|
|
GDK_GL_ERROR_NOT_AVAILABLE,
|
|
|
|
_("No GL implementation is available"));
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2018-03-28 04:59:47 +00:00
|
|
|
hwnd = GDK_SURFACE_HWND (surface);
|
2014-12-17 04:32:04 +00:00
|
|
|
hdc = GetDC (hwnd);
|
|
|
|
|
|
|
|
display_win32->gl_hwnd = hwnd;
|
|
|
|
|
|
|
|
context = g_object_new (GDK_TYPE_WIN32_GL_CONTEXT,
|
2018-03-28 04:59:47 +00:00
|
|
|
"surface", surface,
|
2014-12-17 04:32:04 +00:00
|
|
|
"shared-context", share,
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
context->gl_hdc = hdc;
|
|
|
|
context->is_attached = attached;
|
|
|
|
|
|
|
|
return GDK_GL_CONTEXT (context);
|
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
_gdk_win32_display_make_gl_context_current (GdkDisplay *display,
|
|
|
|
GdkGLContext *context)
|
|
|
|
{
|
|
|
|
GdkWin32GLContext *context_win32;
|
|
|
|
GdkWin32Display *display_win32 = GDK_WIN32_DISPLAY (display);
|
2018-03-28 04:59:47 +00:00
|
|
|
GdkSurface *surface;
|
2014-12-17 04:32:04 +00:00
|
|
|
|
|
|
|
gboolean do_frame_sync = FALSE;
|
|
|
|
|
|
|
|
if (context == NULL)
|
|
|
|
{
|
|
|
|
wglMakeCurrent(NULL, NULL);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
context_win32 = GDK_WIN32_GL_CONTEXT (context);
|
|
|
|
|
2017-10-30 07:00:28 +00:00
|
|
|
if (!wglMakeCurrent (context_win32->gl_hdc, context_win32->hglrc))
|
2014-12-17 04:32:04 +00:00
|
|
|
{
|
|
|
|
GDK_NOTE (OPENGL,
|
|
|
|
g_print ("Making WGL context current failed\n"));
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (context_win32->is_attached && display_win32->hasWglEXTSwapControl)
|
|
|
|
{
|
2018-03-28 04:59:47 +00:00
|
|
|
surface = gdk_gl_context_get_surface (context);
|
2014-12-17 04:32:04 +00:00
|
|
|
|
|
|
|
/* If there is compositing there is no particular need to delay
|
|
|
|
* the swap when drawing on the offscreen, rendering to the screen
|
|
|
|
* happens later anyway, and its up to the compositor to sync that
|
|
|
|
* to the vblank. */
|
2018-03-28 04:59:47 +00:00
|
|
|
display = gdk_surface_get_display (surface);
|
2016-11-01 08:42:31 +00:00
|
|
|
do_frame_sync = ! gdk_display_is_composited (display);
|
2014-12-17 04:32:04 +00:00
|
|
|
|
|
|
|
if (do_frame_sync != context_win32->do_frame_sync)
|
|
|
|
{
|
|
|
|
context_win32->do_frame_sync = do_frame_sync;
|
|
|
|
|
|
|
|
if (do_frame_sync)
|
|
|
|
wglSwapIntervalEXT (1);
|
|
|
|
else
|
|
|
|
wglSwapIntervalEXT (0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_win32_display_get_wgl_version:
|
|
|
|
* @display: a #GdkDisplay
|
|
|
|
* @major: (out): return location for the WGL major version
|
|
|
|
* @minor: (out): return location for the WGL minor version
|
|
|
|
*
|
|
|
|
* Retrieves the version of the WGL implementation.
|
|
|
|
*
|
|
|
|
* Returns: %TRUE if WGL is available
|
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
gdk_win32_display_get_wgl_version (GdkDisplay *display,
|
|
|
|
gint *major,
|
|
|
|
gint *minor)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GDK_IS_DISPLAY (display), FALSE);
|
|
|
|
|
|
|
|
if (!GDK_IS_WIN32_DISPLAY (display))
|
|
|
|
return FALSE;
|
|
|
|
|
2016-10-27 21:27:49 +00:00
|
|
|
if (!_gdk_win32_display_init_gl (display))
|
2014-12-17 04:32:04 +00:00
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (major != NULL)
|
|
|
|
*major = GDK_WIN32_DISPLAY (display)->gl_version / 10;
|
|
|
|
if (minor != NULL)
|
|
|
|
*minor = GDK_WIN32_DISPLAY (display)->gl_version % 10;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|