r200: Add trace logging to r200PointSize.

This commit is contained in:
Pauli Nieminen 2010-02-05 15:19:29 +02:00
parent c036d13d7d
commit 05b0408489

View file

@ -595,6 +595,13 @@ static void r200PointSize( GLcontext *ctx, GLfloat size )
r200ContextPtr rmesa = R200_CONTEXT(ctx);
GLfloat *fcmd = (GLfloat *)rmesa->hw.ptp.cmd;
radeon_print(RADEON_STATE, RADEON_TRACE,
"%s(%p) size: %f, fixed point result: %d.%d (%d/16)\n",
__func__, ctx, size,
((GLuint)(ctx->Point.Size * 16.0))/16,
(((GLuint)(ctx->Point.Size * 16.0))&15)*100/16,
((GLuint)(ctx->Point.Size * 16.0))&15);
R200_STATECHANGE( rmesa, cst );
R200_STATECHANGE( rmesa, ptp );
rmesa->hw.cst.cmd[CST_RE_POINTSIZE] &= ~0xffff;