From b4d601b1c5518118f2385678d0113bf57085ab69 Mon Sep 17 00:00:00 2001 From: Gert Wollny Date: Thu, 26 Nov 2020 16:19:51 +0100 Subject: [PATCH] vrend: Also test for EXT_buffer_storage GLES hosts might expose this. Signed-off-by: Gert Wollny Reviewed-by: Gurchetan Singh --- src/vrend_renderer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vrend_renderer.c b/src/vrend_renderer.c index 47ed714..5ce0fce 100644 --- a/src/vrend_renderer.c +++ b/src/vrend_renderer.c @@ -204,7 +204,7 @@ static const struct { } feature_list[] = { FEAT(arb_or_gles_ext_texture_buffer, 31, UNAVAIL, "GL_ARB_texture_buffer_object", "GL_EXT_texture_buffer", NULL), FEAT(arb_robustness, UNAVAIL, UNAVAIL, "GL_ARB_robustness" ), - FEAT(arb_buffer_storage, 44, UNAVAIL, "GL_ARB_buffer_storage"), + FEAT(arb_buffer_storage, 44, UNAVAIL, "GL_ARB_buffer_storage", "GL_EXT_buffer_storage"), FEAT(arrays_of_arrays, 43, 31, "GL_ARB_arrays_of_arrays"), FEAT(atomic_counters, 42, 31, "GL_ARB_shader_atomic_counters" ), FEAT(base_instance, 42, UNAVAIL, "GL_ARB_base_instance", "GL_EXT_base_instance" ),