Inspector: Sync WGL extensions with GdkWin32GLContextWGL

Replace WGL_EXT_pixel_format with WGL_ARB_pixel_format and drop
WGL_ARB_MULTISAMPLE (unused).
This commit is contained in:
Luca Bacci
2024-09-04 17:10:39 +02:00
parent 3a9f26113f
commit 84d2961a91

View File

@@ -453,11 +453,10 @@ init_gl (GtkInspectorGeneral *gen)
gtk_widget_set_visible (gen->gl_backend_version, FALSE);
append_gl_extension_row (gen, "GL_WIN_swap_hint");
append_wgl_extension_row (gen, "WGL_EXT_create_context");
append_wgl_extension_row (gen, "WGL_ARB_pixel_format");
append_wgl_extension_row (gen, "WGL_ARB_create_context");
append_wgl_extension_row (gen, "WGL_EXT_swap_control");
append_wgl_extension_row (gen, "WGL_OML_sync_control");
append_wgl_extension_row (gen, "WGL_ARB_pixel_format");
append_wgl_extension_row (gen, "WGL_ARB_multisample");
}
else
#endif