i965: Add _NEW_POINT to a couple of comments.
authorKenneth Graunke <kenneth@whitecape.org>
Thu, 2 Jun 2016 00:32:55 +0000 (17:32 -0700)
committerKenneth Graunke <kenneth@whitecape.org>
Thu, 2 Jun 2016 21:11:55 +0000 (14:11 -0700)
Signed-off-by: Kenneth Graunke <kenneth@whitecape.org>
Reviewed-by: Iago Toral Quiroga <itoral@igalia.com>
src/mesa/drivers/dri/i965/gen6_sf_state.c
src/mesa/drivers/dri/i965/gen7_sf_state.c
src/mesa/drivers/dri/i965/gen8_sf_state.c

index 8b1b7eb3f8f8d379a6b3c6f2fa651cdf6d275433..0538ab7042865a5d21d30397b080b00afbed70e6 100644 (file)
@@ -378,7 +378,7 @@ upload_sf_state(struct brw_context *brw)
         ctx->Point._Attenuated))
       dw4 |= GEN6_SF_USE_STATE_POINT_WIDTH;
 
-   /* Clamp to ARB_point_parameters user limits */
+   /* _NEW_POINT - Clamp to ARB_point_parameters user limits */
    point_size = CLAMP(ctx->Point.Size, ctx->Point.MinSize, ctx->Point.MaxSize);
 
    /* Clamp to the hardware limits and convert to fixed point */
index 7a3cc530c0aea9f5c430622893a113a53a7d3515..d3a658c024f2383333bb2b2637ea823d532c7af1 100644 (file)
@@ -217,7 +217,7 @@ upload_sf_state(struct brw_context *brw)
    if (!(ctx->VertexProgram.PointSizeEnabled || ctx->Point._Attenuated))
       dw3 |= GEN6_SF_USE_STATE_POINT_WIDTH;
 
-   /* Clamp to ARB_point_parameters user limits */
+   /* _NEW_POINT - Clamp to ARB_point_parameters user limits */
    point_size = CLAMP(ctx->Point.Size, ctx->Point.MinSize, ctx->Point.MaxSize);
 
    /* Clamp to the hardware limits and convert to fixed point */
index 60e8c94a7efc54b9e15e2cd38495ec6c2fb40d9b..d854b6dd47d57e01dbe3db148517ae7bbf04ba7e 100644 (file)
@@ -166,7 +166,7 @@ upload_sf(struct brw_context *brw)
       dw2 |= GEN6_SF_LINE_END_CAP_WIDTH_1_0;
    }
 
-   /* Clamp to ARB_point_parameters user limits */
+   /* _NEW_POINT - Clamp to ARB_point_parameters user limits */
    point_size = CLAMP(ctx->Point.Size, ctx->Point.MinSize, ctx->Point.MaxSize);
 
    /* Clamp to the hardware limits and convert to fixed point */