OSDN Git Service

i965/gen6: Enable ARB_viewport_array and AMD_vertex_shader_viewport_index
authorChris Forbes <chrisf@ijw.co.nz>
Wed, 6 May 2015 05:45:11 +0000 (17:45 +1200)
committerChris Forbes <chrisf@ijw.co.nz>
Wed, 6 May 2015 07:01:58 +0000 (19:01 +1200)
Signed-off-by: Chris Forbes <chrisf@ijw.co.nz>
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
src/mesa/drivers/dri/i965/intel_extensions.c

index c28c171..3088a1a 100644 (file)
@@ -292,6 +292,14 @@ intelInitExtensions(struct gl_context *ctx)
       /* Test if the kernel has the ioctl. */
       if (drm_intel_reg_read(brw->bufmgr, TIMESTAMP, &dummy) == 0)
          ctx->Extensions.ARB_timer_query = true;
+
+      /* Only enable this in core profile because other parts of Mesa behave
+       * slightly differently when the extension is enabled.
+       */
+      if (ctx->API == API_OPENGL_CORE) {
+         ctx->Extensions.ARB_viewport_array = true;
+         ctx->Extensions.AMD_vertex_shader_viewport_index = true;
+      }
    }
 
    if (brw->gen >= 5) {
@@ -313,14 +321,6 @@ intelInitExtensions(struct gl_context *ctx)
          ctx->Extensions.ARB_draw_indirect = true;
       }
 
-      /* Only enable this in core profile because other parts of Mesa behave
-       * slightly differently when the extension is enabled.
-       */
-      if (ctx->API == API_OPENGL_CORE) {
-         ctx->Extensions.ARB_viewport_array = true;
-         ctx->Extensions.AMD_vertex_shader_viewport_index = true;
-      }
-
       ctx->Extensions.ARB_texture_compression_bptc = true;
       ctx->Extensions.ARB_derivative_control = true;
    }