diff options
author | Brian Paul <[email protected]> | 2005-10-07 03:56:29 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2005-10-07 03:56:29 +0000 |
commit | dfe7aedf845ce9117065c6cee2146df7eee1c0fa (patch) | |
tree | 5a2f0638c52c406babdaf5975f83798c1e265010 /src/mesa/main/points.h | |
parent | 9dd973ec3b2b53f4b95d2ba0a746a0e52533becf (diff) |
Fix a number of point size attenuation problems.
Move size clamping into the rasterization function.
Diffstat (limited to 'src/mesa/main/points.h')
-rw-r--r-- | src/mesa/main/points.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/mesa/main/points.h b/src/mesa/main/points.h index 16513c3ec67..56acd9ee574 100644 --- a/src/mesa/main/points.h +++ b/src/mesa/main/points.h @@ -5,9 +5,9 @@ /* * Mesa 3-D graphics library - * Version: 4.1 + * Version: 6.5 * - * Copyright (C) 1999-2002 Brian Paul All Rights Reserved. + * Copyright (C) 1999-2005 Brian Paul All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -50,6 +50,9 @@ _mesa_PointParameterfEXT( GLenum pname, GLfloat param ); extern void GLAPIENTRY _mesa_PointParameterfvEXT( GLenum pname, const GLfloat *params ); +extern void +_mesa_update_point(GLcontext *ctx); + extern void _mesa_init_point( GLcontext * ctx ); |