From: Marek Olšák Date: Mon, 6 Aug 2018 01:39:00 +0000 (-0400) Subject: mesa: remove incorrect change for EXT_disjoint_timer_query X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=356ff963ecd998aec9136441e0c4a45dadbde355;p=mesa.git mesa: remove incorrect change for EXT_disjoint_timer_query Reviewed-by: Tapani Pälli Tested-by: Dieter Nützel --- 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; }