mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-26 10:40:11 +01:00
i965: Add _NEW_POINT to a couple of comments.
Signed-off-by: Kenneth Graunke <kenneth@whitecape.org> Reviewed-by: Iago Toral Quiroga <itoral@igalia.com>
This commit is contained in:
parent
0cf0d7c02e
commit
f74a29188c
3 changed files with 3 additions and 3 deletions
|
|
@ -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 */
|
||||
|
|
|
|||
|
|
@ -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 */
|
||||
|
|
|
|||
|
|
@ -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 */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue