summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/genmipmap.c
diff options
context:
space:
mode:
authorIan Romanick <ian.d.romanick@intel.com>2015-05-18 13:54:25 -0700
committerIan Romanick <ian.d.romanick@intel.com>2015-05-28 16:56:32 -0700
commit1ac6a8f1d1952a20d54df3e513c253d7988402ac (patch)
treeae38d4966f22f6900a33ba1204601b155b0606ec /src/mesa/main/genmipmap.c
parent92e362191e6c1c15e3944464fbf6bbda9e7d9892 (diff)
downloadexternal_mesa3d-1ac6a8f1d1952a20d54df3e513c253d7988402ac.zip
external_mesa3d-1ac6a8f1d1952a20d54df3e513c253d7988402ac.tar.gz
external_mesa3d-1ac6a8f1d1952a20d54df3e513c253d7988402ac.tar.bz2
Revert "mesa: Add ARB_direct_state_access checks in texture functions"
This reverts commit 8940957238e8584ce27295791cee4cc3d6f7cf1e. Acked-by: Fredrik Höglund <fredrik@kde.org> Cc: "10.6" <mesa-stable@lists.freedesktop.org>
Diffstat (limited to 'src/mesa/main/genmipmap.c')
-rw-r--r--src/mesa/main/genmipmap.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/mesa/main/genmipmap.c b/src/mesa/main/genmipmap.c
index 32b9460..9aef090 100644
--- a/src/mesa/main/genmipmap.c
+++ b/src/mesa/main/genmipmap.c
@@ -158,13 +158,6 @@ _mesa_GenerateTextureMipmap(GLuint texture)
struct gl_texture_object *texObj;
GET_CURRENT_CONTEXT(ctx);
- if (!ctx->Extensions.ARB_direct_state_access) {
- _mesa_error(ctx, GL_INVALID_OPERATION,
- "glGenerateTextureMipmap(GL_ARB_direct_state_access "
- "is not supported)");
- return;
- }
-
texObj = _mesa_lookup_texture_err(ctx, texture, "glGenerateTextureMipmap");
if (!texObj)
return;