fix for gl_ztrick bug (Ove Kaaven)
[mesa.git] / src / mesa / main / points.c
1 /* $Id: points.c,v 1.30 2001/03/12 00:48:38 gareth Exp $ */
2
3 /*
4 * Mesa 3-D graphics library
5 * Version: 3.5
6 *
7 * Copyright (C) 1999-2001 Brian Paul All Rights Reserved.
8 *
9 * Permission is hereby granted, free of charge, to any person obtaining a
10 * copy of this software and associated documentation files (the "Software"),
11 * to deal in the Software without restriction, including without limitation
12 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
13 * and/or sell copies of the Software, and to permit persons to whom the
14 * Software is furnished to do so, subject to the following conditions:
15 *
16 * The above copyright notice and this permission notice shall be included
17 * in all copies or substantial portions of the Software.
18 *
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
20 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
22 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
23 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
24 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 */
26
27
28 #ifdef PC_HEADER
29 #include "all.h"
30 #else
31 #include "glheader.h"
32 #include "context.h"
33 #include "macros.h"
34 #include "mmath.h"
35 #include "points.h"
36 #include "texstate.h"
37 #include "mtypes.h"
38 #endif
39
40
41
42 void
43 _mesa_PointSize( GLfloat size )
44 {
45 GET_CURRENT_CONTEXT(ctx);
46 ASSERT_OUTSIDE_BEGIN_END(ctx);
47
48 if (size <= 0.0) {
49 _mesa_error( ctx, GL_INVALID_VALUE, "glPointSize" );
50 return;
51 }
52
53 if (ctx->Point.Size == size)
54 return;
55
56 FLUSH_VERTICES(ctx, _NEW_POINT);
57 ctx->Point.Size = size;
58 ctx->Point._Size = CLAMP(size,
59 ctx->Const.MinPointSize,
60 ctx->Const.MaxPointSize);
61
62 if (ctx->Point._Size == 1.0F)
63 ctx->_TriangleCaps &= ~DD_POINT_SIZE;
64 else
65 ctx->_TriangleCaps |= DD_POINT_SIZE;
66
67 if (ctx->Driver.PointSize)
68 (*ctx->Driver.PointSize)(ctx, size);
69 }
70
71
72
73 void
74 _mesa_PointParameterfEXT( GLenum pname, GLfloat param)
75 {
76 _mesa_PointParameterfvEXT(pname, &param);
77 }
78
79
80 void
81 _mesa_PointParameterfvEXT( GLenum pname, const GLfloat *params)
82 {
83 GET_CURRENT_CONTEXT(ctx);
84 ASSERT_OUTSIDE_BEGIN_END(ctx);
85
86 switch (pname) {
87 case GL_DISTANCE_ATTENUATION_EXT:
88 {
89 const GLboolean tmp = ctx->Point._Attenuated;
90 if (TEST_EQ_3V(ctx->Point.Params, params))
91 return;
92
93 FLUSH_VERTICES(ctx, _NEW_POINT);
94 COPY_3V(ctx->Point.Params, params);
95
96 /* Update several derived values now. This likely to be
97 * more efficient than trying to catch this statechange in
98 * state.c.
99 */
100 ctx->Point._Attenuated = (params[0] != 1.0 ||
101 params[1] != 0.0 ||
102 params[2] != 0.0);
103
104 if (tmp != ctx->Point._Attenuated) {
105 ctx->_Enabled ^= ENABLE_POINT_ATTEN;
106 ctx->_TriangleCaps ^= DD_POINT_ATTEN;
107 ctx->_NeedEyeCoords ^= NEED_EYE_POINT_ATTEN;
108 }
109 }
110 break;
111 case GL_POINT_SIZE_MIN_EXT:
112 if (*params < 0.0F) {
113 _mesa_error( ctx, GL_INVALID_VALUE, "glPointParameterfvEXT" );
114 return;
115 }
116 if (ctx->Point.MinSize == *params)
117 return;
118 FLUSH_VERTICES(ctx, _NEW_POINT);
119 ctx->Point.MinSize = *params;
120 break;
121 case GL_POINT_SIZE_MAX_EXT:
122 if (*params < 0.0F) {
123 _mesa_error( ctx, GL_INVALID_VALUE, "glPointParameterfvEXT" );
124 return;
125 }
126 if (ctx->Point.MaxSize == *params)
127 return;
128 FLUSH_VERTICES(ctx, _NEW_POINT);
129 ctx->Point.MaxSize = *params;
130 break;
131 case GL_POINT_FADE_THRESHOLD_SIZE_EXT:
132 if (*params < 0.0F) {
133 _mesa_error( ctx, GL_INVALID_VALUE, "glPointParameterfvEXT" );
134 return;
135 }
136 if (ctx->Point.Threshold == *params)
137 return;
138 FLUSH_VERTICES(ctx, _NEW_POINT);
139 ctx->Point.Threshold = *params;
140 break;
141 default:
142 _mesa_error( ctx, GL_INVALID_ENUM, "glPointParameterfvEXT" );
143 return;
144 }
145
146 if (ctx->Driver.PointParameterfv)
147 (*ctx->Driver.PointParameterfv)(ctx, pname, params);
148 }