diff options
author | Brian Paul <[email protected]> | 2000-12-08 00:18:39 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2000-12-08 00:18:39 +0000 |
commit | fb7899bfec447e5840c2c1ea96619084093be424 (patch) | |
tree | 51e6bc8cc768713daa04d6419603497ca1bb4da0 /src/mesa/swrast/swrast.h | |
parent | c1b97d91c7e38290be85eb1ff56e6c108e1e47ca (diff) |
Compute attenuated point size in a new pipeline stage.
Store computed point size in the SWvertex struct.
Diffstat (limited to 'src/mesa/swrast/swrast.h')
-rw-r--r-- | src/mesa/swrast/swrast.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/swrast/swrast.h b/src/mesa/swrast/swrast.h index d2eefbebd9f..f3820a68b88 100644 --- a/src/mesa/swrast/swrast.h +++ b/src/mesa/swrast/swrast.h @@ -56,12 +56,12 @@ */ typedef struct { GLfloat win[4]; - GLfloat eye[4]; /* for GL_EXT_point_param only */ GLfloat texcoord[MAX_TEXTURE_UNITS][4]; GLchan color[4]; GLchan specular[4]; GLfloat fog; GLuint index; + GLfloat pointSize; } SWvertex; |