From 2c12423975a68e2a227377249ebc23935bde7618 Mon Sep 17 00:00:00 2001 From: baldurk Date: Sun, 14 Dec 2014 00:29:16 +0000 Subject: [PATCH] Return some WGL extensions that we can easily support. --- renderdoc/hooks/gl_win32_hooks.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/renderdoc/hooks/gl_win32_hooks.cpp b/renderdoc/hooks/gl_win32_hooks.cpp index dffb1da1a..bd836b111 100644 --- a/renderdoc/hooks/gl_win32_hooks.cpp +++ b/renderdoc/hooks/gl_win32_hooks.cpp @@ -203,11 +203,18 @@ class OpenGLHook : LibraryHook // an extension that it doesn't! wglExts.push_back("WGL_ARB_extensions_string"); + wglExts.push_back("WGL_EXT_extensions_string"); wglExts.push_back("WGL_ARB_multisample"); wglExts.push_back("WGL_ARB_framebuffer_sRGB"); + wglExts.push_back("WGL_EXT_framebuffer_sRGB"); wglExts.push_back("WGL_ARB_create_context"); wglExts.push_back("WGL_ARB_create_context_profile"); + wglExts.push_back("WGL_ARB_create_context_robustness"); + wglExts.push_back("WGL_EXT_create_context_es_profile"); + wglExts.push_back("WGL_EXT_create_context_es2_profile"); wglExts.push_back("WGL_ARB_pixel_format"); + wglExts.push_back("WGL_ARB_pixel_format_float"); + wglExts.push_back("WGL_EXT_pixel_format_packed_float"); wglExts.push_back("WGL_EXT_swap_control"); wglExts.push_back("WGL_EXT_swap_control_tear");