From: Lucas Stach Date: Wed, 18 Oct 2023 11:55:11 +0000 (+0200) Subject: mesa: add GL_APPLE_sync support X-Git-Tag: upstream/23.3.3~525 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f8753a542be07247c0894db911b945211ced2200;p=platform%2Fupstream%2Fmesa.git mesa: add GL_APPLE_sync support This extension is a backport of GL_ARB_sync to GLES 1.1 and 2.0 and reuses token IDs and entry point prototypes from that extension, so adding support is pretty trivial. Signed-off-by: Lucas Stach Reviewed-by: Marek Olšák Reviewed-by: Adam Jackson Part-of: --- diff --git a/src/mapi/glapi/gen/es_EXT.xml b/src/mapi/glapi/gen/es_EXT.xml index 7127e66..5565fd4 100644 --- a/src/mapi/glapi/gen/es_EXT.xml +++ b/src/mapi/glapi/gen/es_EXT.xml @@ -856,6 +856,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/mesa/main/extensions_table.h b/src/mesa/main/extensions_table.h index afde488..2c7e31a 100644 --- a/src/mesa/main/extensions_table.h +++ b/src/mesa/main/extensions_table.h @@ -32,6 +32,7 @@ EXT(ANGLE_texture_compression_dxt3 , ANGLE_texture_compression_dxt EXT(ANGLE_texture_compression_dxt5 , ANGLE_texture_compression_dxt , GLL, GLC, ES1, ES2, 2011) EXT(APPLE_packed_pixels , dummy_true , GLL, x , x , x , 2002) +EXT(APPLE_sync , ARB_sync , x , x , ES1, ES2, 2012) EXT(APPLE_texture_max_level , dummy_true , x , x , ES1, ES2, 2009) EXT(ARB_ES2_compatibility , ARB_ES2_compatibility , GLL, GLC, x , x , 2009)