From f97060bc1438db9fd5237cde0d8e68c1ff093d28 Mon Sep 17 00:00:00 2001 From: Jesse Natalie Date: Wed, 14 Feb 2024 12:31:01 -0800 Subject: [PATCH] wgl: Enable WGL_ARB_pixel_format_float We already implement all of the relevant bits of this extension, which is just handling WGL_TYPE_RGBA_FLOAT_ARB for WGL_PIXEL_TYPE_ARB in wglGetPixelFormatAttrib[i/f]vARB and wglChoosePixelFormatARB. We just didn't have any float formats enumerated so it was never seen in practice. Reviewed-by: Sil Vilerino Reviewed-by: Jose Fonseca Part-of: --- src/gallium/frontends/wgl/stw_ext_extensionsstring.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gallium/frontends/wgl/stw_ext_extensionsstring.c b/src/gallium/frontends/wgl/stw_ext_extensionsstring.c index f0d29752e22..3d0e36c44dd 100644 --- a/src/gallium/frontends/wgl/stw_ext_extensionsstring.c +++ b/src/gallium/frontends/wgl/stw_ext_extensionsstring.c @@ -43,6 +43,7 @@ static const char *stw_extension_string = "WGL_ARB_multisample " "WGL_ARB_pbuffer " "WGL_ARB_pixel_format " + "WGL_ARB_pixel_format_float " "WGL_ARB_render_texture " "WGL_EXT_create_context_es_profile " "WGL_EXT_create_context_es2_profile "