[Mesa-dev] [PATCH 50/57] mesa: Add ARB_direct_state_access checks in sampler object functions

Fredrik Höglund fredrik at kde.org
Mon May 11 10:27:16 PDT 2015


Signed-off-by: Fredrik Höglund <fredrik at kde.org>
---
 src/mesa/main/samplerobj.c | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/src/mesa/main/samplerobj.c b/src/mesa/main/samplerobj.c
index a3aacc6..60711a5 100644
--- a/src/mesa/main/samplerobj.c
+++ b/src/mesa/main/samplerobj.c
@@ -221,6 +221,13 @@ void GLAPIENTRY
 _mesa_CreateSamplers(GLsizei count, GLuint *samplers)
 {
    GET_CURRENT_CONTEXT(ctx);
+
+   if (!ctx->Extensions.ARB_direct_state_access) {
+      _mesa_error(ctx, GL_INVALID_OPERATION, "glCreateSamplers("
+                  "GL_ARB_direct_state_access is not supported)");
+      return;
+   }
+
    create_samplers(ctx, count, samplers, "glCreateSamplers");
 }
 
-- 
2.1.4



More information about the mesa-dev mailing list