Module: Mesa Branch: master Commit: 317e172677541771d3dbfadba852f067d8d881a1 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=317e172677541771d3dbfadba852f067d8d881a1
Author: Chris Forbes <[email protected]> Date: Sat Oct 5 17:11:57 2013 +1300 i965: enable ARB_texture_query_levels on Gen6+ Theoretically would work on Gen5 as well but requires GLSL 1.30, which is not (yet) enabled by default there. V2: Enable for Gen5 conditionally on GLSL version. Signed-off-by: Chris Forbes <[email protected]> Reviewed-by: Matt Turner <[email protected]> --- src/mesa/drivers/dri/i965/intel_extensions.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/src/mesa/drivers/dri/i965/intel_extensions.c b/src/mesa/drivers/dri/i965/intel_extensions.c index 0502a48..52076f7 100644 --- a/src/mesa/drivers/dri/i965/intel_extensions.c +++ b/src/mesa/drivers/dri/i965/intel_extensions.c @@ -158,6 +158,7 @@ intelInitExtensions(struct gl_context *ctx) ctx->Extensions.ARB_texture_query_lod = true; ctx->Extensions.EXT_timer_query = true; ctx->Extensions.EXT_shader_integer_mix = ctx->Const.GLSLVersion >= 130; + ctx->Extensions.ARB_texture_query_levels = ctx->Const.GLSLVersion >= 130; } if (brw->gen == 5) _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
