mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 18:18:06 +02:00
i965: Merge the two GEN >= 6 extension enable blocks
There's no reason for these blocks to be separate. Signed-off-by: Ian Romanick <ian.d.romanick@intel.com> Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
parent
ae66a656fd
commit
0b9398c74f
1 changed files with 6 additions and 7 deletions
|
|
@ -139,6 +139,8 @@ intelInitExtensions(struct gl_context *ctx)
|
|||
_mesa_override_glsl_version(ctx);
|
||||
|
||||
if (intel->gen >= 6) {
|
||||
uint64_t dummy;
|
||||
|
||||
ctx->Extensions.EXT_framebuffer_multisample = true;
|
||||
ctx->Extensions.EXT_transform_feedback = true;
|
||||
ctx->Extensions.ARB_blend_func_extended = !driQueryOptionb(&intel->optionCache, "disable_blend_func_extended");
|
||||
|
|
@ -152,6 +154,10 @@ intelInitExtensions(struct gl_context *ctx)
|
|||
ctx->Extensions.ARB_shading_language_packing = true;
|
||||
ctx->Extensions.ARB_texture_multisample = true;
|
||||
ctx->Extensions.ARB_texture_storage_multisample = true;
|
||||
|
||||
/* Test if the kernel has the ioctl. */
|
||||
if (drm_intel_reg_read(intel->bufmgr, TIMESTAMP, &dummy) == 0)
|
||||
ctx->Extensions.ARB_timer_query = true;
|
||||
}
|
||||
|
||||
if (intel->gen >= 5) {
|
||||
|
|
@ -159,13 +165,6 @@ intelInitExtensions(struct gl_context *ctx)
|
|||
ctx->Extensions.EXT_timer_query = true;
|
||||
}
|
||||
|
||||
if (intel->gen >= 6) {
|
||||
uint64_t dummy;
|
||||
/* Test if the kernel has the ioctl. */
|
||||
if (drm_intel_reg_read(intel->bufmgr, TIMESTAMP, &dummy) == 0)
|
||||
ctx->Extensions.ARB_timer_query = true;
|
||||
}
|
||||
|
||||
if (ctx->API == API_OPENGL_CORE)
|
||||
ctx->Extensions.ARB_base_instance = true;
|
||||
if (ctx->API != API_OPENGL_CORE)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue