summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/extensions.c
diff options
context:
space:
mode:
authorNanley Chery <[email protected]>2015-10-16 10:14:39 -0700
committerNanley Chery <[email protected]>2015-11-12 21:31:05 -0800
commit79f68306d23bfb48ef645c4bded8ee7b74d2d661 (patch)
treef8d79f57f1140b720f6969800c6afb830d34db7d /src/mesa/main/extensions.c
parent2de2e1702b4fab73b1f577fa4a21b7bd0a7040dd (diff)
mesa: Replace gl_extensions::EXT_texture3D with ::dummy_true
Mesa unconditionally sets this driver flag to true in _mesa_init_extensions(). There is therefore no need for the driver to communicate support for this extension. Replace the driver capability flag with ::dummy_true. Signed-off-by: Nanley Chery <[email protected]> Reviewed-by: Chad Versace <[email protected]>
Diffstat (limited to 'src/mesa/main/extensions.c')
-rw-r--r--src/mesa/main/extensions.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mesa/main/extensions.c b/src/mesa/main/extensions.c
index 97f23bfd88a..e94d2b74749 100644
--- a/src/mesa/main/extensions.c
+++ b/src/mesa/main/extensions.c
@@ -383,7 +383,6 @@ _mesa_init_extensions(struct gl_extensions *extensions)
/* Then, selectively turn default extensions on. */
extensions->dummy_true = GL_TRUE;
- extensions->EXT_texture3D = GL_TRUE;
}