diff options
author | Ilia Mirkin <[email protected]> | 2016-08-28 15:40:19 -0400 |
---|---|---|
committer | Ilia Mirkin <[email protected]> | 2016-09-13 20:49:55 -0400 |
commit | 89a49af31ef3ae4adbef54131d65f8a407a83eaa (patch) | |
tree | 24fdddaf6448e8fbaa800e1193dcab5c45fb28f0 /src/mesa | |
parent | 83116d084f254cb8fcb58d240af10cf40a444cde (diff) |
glsl: add core plumbing for GL_ANDROID_extension_pack_es31a
Signed-off-by: Ilia Mirkin <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/main/extensions_table.h | 2 | ||||
-rw-r--r-- | src/mesa/main/mtypes.h | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/main/extensions_table.h b/src/mesa/main/extensions_table.h index edfc458a44a..1f8da7e8242 100644 --- a/src/mesa/main/extensions_table.h +++ b/src/mesa/main/extensions_table.h @@ -18,6 +18,8 @@ EXT(AMD_shader_trinary_minmax , dummy_true EXT(AMD_vertex_shader_layer , AMD_vertex_shader_layer , x , GLC, x , x , 2012) EXT(AMD_vertex_shader_viewport_index , AMD_vertex_shader_viewport_index , x , GLC, x , x , 2012) +EXT(ANDROID_extension_pack_es31a , ANDROID_extension_pack_es31a , x , x , x , 31, 2014) + EXT(ANGLE_texture_compression_dxt3 , ANGLE_texture_compression_dxt , GLL, GLC, ES1, ES2, 2011) EXT(ANGLE_texture_compression_dxt5 , ANGLE_texture_compression_dxt , GLL, GLC, ES1, ES2, 2011) diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h index df934469d05..d00829c1f35 100644 --- a/src/mesa/main/mtypes.h +++ b/src/mesa/main/mtypes.h @@ -3957,6 +3957,7 @@ struct gl_extensions GLboolean AMD_seamless_cubemap_per_texture; GLboolean AMD_vertex_shader_layer; GLboolean AMD_vertex_shader_viewport_index; + GLboolean ANDROID_extension_pack_es31a; GLboolean APPLE_object_purgeable; GLboolean ATI_meminfo; GLboolean ATI_texture_compression_3dc; |