Module: Mesa Branch: staging/20.0 Commit: c38d7f390d3d958515c96d58a213fc40f4ba6971 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=c38d7f390d3d958515c96d58a213fc40f4ba6971
Author: Tapani Pälli <[email protected]> Date: Wed Feb 26 10:27:04 2020 +0200 mesa: introduce boolean toggle for EXT_texture_norm16 Fixes: 7f467d4f738 ("mesa: GL_EXT_texture_norm16 extension plumbing") Signed-off-by: Tapani Pälli <[email protected]> Reviewed-by: Lionel Landwerlin <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/3941> (cherry picked from commit dc531869a918dc75ffc09b38851b750ba62673f8) --- .pick_status.json | 2 +- src/mesa/main/extensions_table.h | 2 +- src/mesa/main/mtypes.h | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.pick_status.json b/.pick_status.json index 22403659ffb..682742f3731 100644 --- a/.pick_status.json +++ b/.pick_status.json @@ -1300,7 +1300,7 @@ "description": "mesa: introduce boolean toggle for EXT_texture_norm16", "nominated": true, "nomination_type": 1, - "resolution": 0, + "resolution": 1, "master_sha": null, "because_sha": "7f467d4f73828ba782a2db38c74d33b85646dc85" }, diff --git a/src/mesa/main/extensions_table.h b/src/mesa/main/extensions_table.h index 1831da3f77a..db9d3681574 100644 --- a/src/mesa/main/extensions_table.h +++ b/src/mesa/main/extensions_table.h @@ -313,7 +313,7 @@ EXT(EXT_texture_format_BGRA8888 , dummy_true EXT(EXT_texture_integer , EXT_texture_integer , GLL, GLC, x , x , 2006) EXT(EXT_texture_lod_bias , dummy_true , GLL, x , ES1, x , 1999) EXT(EXT_texture_mirror_clamp , EXT_texture_mirror_clamp , GLL, GLC, x , x , 2004) -EXT(EXT_texture_norm16 , dummy_true , x , x , x , 31, 2014) +EXT(EXT_texture_norm16 , EXT_texture_norm16 , x , x , x , 31, 2014) EXT(EXT_texture_object , dummy_true , GLL, x , x , x , 1995) EXT(EXT_texture_query_lod , ARB_texture_query_lod , x , x , x , 30, 2019) EXT(EXT_texture_rectangle , NV_texture_rectangle , GLL, x , x , x , 2004) diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h index afe35615789..240c884258f 100644 --- a/src/mesa/main/mtypes.h +++ b/src/mesa/main/mtypes.h @@ -4327,6 +4327,7 @@ struct gl_extensions GLboolean EXT_texture_filter_anisotropic; GLboolean EXT_texture_integer; GLboolean EXT_texture_mirror_clamp; + GLboolean EXT_texture_norm16; GLboolean EXT_texture_shadow_lod; GLboolean EXT_texture_shared_exponent; GLboolean EXT_texture_snorm; _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
