OSDN Git Service

i965: Don't use the GS for breaking down quads on Ivybridge.
authorKenneth Graunke <kenneth@whitecape.org>
Thu, 14 Apr 2011 21:56:19 +0000 (14:56 -0700)
committerKenneth Graunke <kenneth@whitecape.org>
Wed, 18 May 2011 06:33:00 +0000 (23:33 -0700)
Signed-off-by: Kenneth Graunke <kenneth@whitecape.org>
Reviewed-by: Eric Anholt <eric@anholt.net>
src/mesa/drivers/dri/i965/brw_context.c
src/mesa/drivers/dri/i965/brw_gs.c

index cd72bc5..a7b7c6f 100644 (file)
@@ -161,7 +161,7 @@ GLboolean brwCreateContext( int api,
       but we're not sure how it's actually done for vertex order,
       that affect provoking vertex decision. Always use last vertex
       convention for quad primitive which works as expected for now. */
-   if (intel->gen == 6)
+   if (intel->gen >= 6)
        ctx->Const.QuadsFollowProvokingVertexConvention = GL_FALSE;
 
    if (intel->is_g4x || intel->gen >= 5) {
index aaffe94..001cd62 100644 (file)
@@ -56,7 +56,7 @@ static void compile_gs_prog( struct brw_context *brw,
    /* Gen6: VF has already converted into polygon, and LINELOOP is
     * converted to LINESTRIP at the beginning of the 3D pipeline.
     */
-   if (intel->gen == 6)
+   if (intel->gen >= 6)
       return;
 
    memset(&c, 0, sizeof(c));
@@ -168,7 +168,7 @@ static void populate_key( struct brw_context *brw,
       key->pv_first = GL_TRUE;
    }
 
-   key->need_gs_prog = (intel->gen == 6)
+   key->need_gs_prog = (intel->gen >= 6)
       ? 0
       : (brw->primitive == GL_QUADS ||
         brw->primitive == GL_QUAD_STRIP ||