i965: Enable ARB_texture_query_lod.
v2: Support Ironlake as well. Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
@@ -87,7 +87,7 @@ GL_ARB_vertex_type_2_10_10_10_rev DONE (i965, r600)
|
||||
GL 4.0:
|
||||
|
||||
GLSL 4.0 not started
|
||||
GL_ARB_texture_query_lod not started
|
||||
GL_ARB_texture_query_lod DONE (i965)
|
||||
GL_ARB_draw_buffers_blend DONE (i965, r600, softpipe)
|
||||
GL_ARB_draw_indirect not started
|
||||
GL_ARB_gpu_shader5 not started
|
||||
|
@@ -110,8 +110,10 @@ intelInitExtensions(struct gl_context *ctx)
|
||||
ctx->Extensions.ARB_texture_multisample = true;
|
||||
}
|
||||
|
||||
if (intel->gen >= 5)
|
||||
if (intel->gen >= 5) {
|
||||
ctx->Extensions.ARB_texture_query_lod = true;
|
||||
ctx->Extensions.EXT_timer_query = true;
|
||||
}
|
||||
|
||||
if (intel->gen >= 6) {
|
||||
uint64_t dummy;
|
||||
|
Reference in New Issue
Block a user