i915: Round point sizes instead of truncate.

This commit is contained in:
Ian Romanick
2009-11-29 17:43:38 -08:00
parent d8d49716cf
commit 718f31b830
+1 -1
View File
@@ -585,7 +585,7 @@ i915PointSize(GLcontext * ctx, GLfloat size)
{
struct i915_context *i915 = I915_CONTEXT(ctx);
int lis4 = i915->state.Ctx[I915_CTXREG_LIS4] & ~S4_POINT_WIDTH_MASK;
GLint point_size = (int) size;
GLint point_size = (int) round(size);
DBG("%s\n", __FUNCTION__);