From 356ff963ecd998aec9136441e0c4a45dadbde355 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Marek=20Ol=C5=A1=C3=A1k?= Date: Sun, 5 Aug 2018 21:39:00 -0400 Subject: [PATCH] mesa: remove incorrect change for EXT_disjoint_timer_query MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Reviewed-by: Tapani Pälli Tested-by: Dieter Nützel --- src/mesa/main/queryobj.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/mesa/main/queryobj.c b/src/mesa/main/queryobj.c index 7547fa1bb4d..e97a0138e96 100644 --- a/src/mesa/main/queryobj.c +++ b/src/mesa/main/queryobj.c @@ -822,8 +822,7 @@ get_query_object(struct gl_context *ctx, const char *func, if (buf && buf != ctx->Shared->NullBufferObj) { bool is_64bit = ptype == GL_INT64_ARB || ptype == GL_UNSIGNED_INT64_ARB; - if (!ctx->Extensions.ARB_query_buffer_object && - !ctx->Extensions.EXT_disjoint_timer_query) { + if (!ctx->Extensions.ARB_query_buffer_object) { _mesa_error(ctx, GL_INVALID_OPERATION, "%s(not supported)", func); return; } -- 2.30.2