Module: Mesa Branch: master Commit: a7fa91b658fdaa7c90b9c9a0ab8611d89f2dc78d URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=a7fa91b658fdaa7c90b9c9a0ab8611d89f2dc78d
Author: Marek Olšák <[email protected]> Date: Sat Jun 5 17:40:53 2010 +0200 mesa: add ARB_texture_swizzle as alias of EXT_texture_swizzle, update relnotes The specifications are identical. --- docs/relnotes-7.9.html | 1 + src/mesa/main/extensions.c | 1 + 2 files changed, 2 insertions(+), 0 deletions(-) diff --git a/docs/relnotes-7.9.html b/docs/relnotes-7.9.html index 962444c..211978b 100644 --- a/docs/relnotes-7.9.html +++ b/docs/relnotes-7.9.html @@ -35,6 +35,7 @@ tbd <h2>New features</h2> <ul> <li>GL_EXT_timer_query extension (i965 driver only) +<li>GL_ARB_texture_swizzle extension (alias of GL_EXT_texture_swizzle) </ul> diff --git a/src/mesa/main/extensions.c b/src/mesa/main/extensions.c index 030ba60..371ef3a 100644 --- a/src/mesa/main/extensions.c +++ b/src/mesa/main/extensions.c @@ -84,6 +84,7 @@ static const struct { { OFF, "GL_ARB_texture_mirrored_repeat", F(ARB_texture_mirrored_repeat)}, { OFF, "GL_ARB_texture_non_power_of_two", F(ARB_texture_non_power_of_two)}, { OFF, "GL_ARB_texture_rectangle", F(NV_texture_rectangle) }, + { OFF, "GL_ARB_texture_swizzle", F(EXT_texture_swizzle) }, { ON, "GL_ARB_transpose_matrix", F(ARB_transpose_matrix) }, { OFF, "GL_ARB_transform_feedback2", F(ARB_transform_feedback2) }, { OFF, "GL_ARB_vertex_array_bgra", F(EXT_vertex_array_bgra) }, _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
