Lines Matching refs:GLfloat

21 static GLfloat Xmin, Xmax, Ymin, Ymax, Zmin, Zmax;
38 LoadMatrixf(const GLfloat m[16])
88 MultMatrixf(const GLfloat m1[16])
146 GLfloat m2[16];
149 m2[i] = (GLfloat) m1[i];
155 Rotatef(GLfloat ang, GLfloat x, GLfloat y, GLfloat z)
164 crMatrixRotate(CurrentStack->top, (GLfloat) ang,
165 (GLfloat) x, (GLfloat) y, (GLfloat) z);
170 Translatef(GLfloat x, GLfloat y, GLfloat z)
179 crMatrixTranslate(CurrentStack->top, (GLfloat) x, (GLfloat) y, (GLfloat) z);
184 Scalef(GLfloat x, GLfloat y, GLfloat z)
193 crMatrixScale(CurrentStack->top, (GLfloat) x, (GLfloat) y, (GLfloat) z);
201 DoVertex(GLfloat x, GLfloat y, GLfloat z, GLfloat w)
204 const GLfloat x2 = m->m00 * x + m->m10 * y + m->m20 * z + m->m30 * w;
205 const GLfloat y2 = m->m01 * x + m->m11 * y + m->m21 * z + m->m31 * w;
206 const GLfloat z2 = m->m02 * x + m->m12 * y + m->m22 * z + m->m32 * w;
207 /*const GLfloat w2 = m->m03 * x + m->m13 * y + m->m23 * z + m->m33 * w;*/
219 Vertex2f(GLfloat x, GLfloat y)
225 Vertex2fv(const GLfloat *v)
231 Vertex3f(GLfloat x, GLfloat y, GLfloat z)
237 Vertex3fv(const GLfloat *v)
243 Vertex4f(GLfloat x, GLfloat y, GLfloat z, GLfloat w)
249 Vertex4fv(const GLfloat *v)
259 glVertex2f( GLfloat x, GLfloat y );
263 glVertex3f( GLfloat x, GLfloat y, GLfloat z );
267 glVertex4f( GLfloat x, GLfloat y, GLfloat z, GLfloat w );
271 glVertex2fv( const GLfloat *v );
275 glVertex3fv( const GLfloat *v );
279 glVertex4fv( const GLfloat *v );
285 glVertexAttrib1fARB(GLuint, GLfloat);
286 glVertexAttrib1fvARB(GLuint, const GLfloat *);
291 glVertexAttrib2fARB(GLuint, GLfloat, GLfloat);
292 glVertexAttrib2fvARB(GLuint, const GLfloat *);
300 VertexAttrib3fARB(GLuint index, GLfloat x, GLfloat y, GLfloat z)
307 glVertexAttrib3fvARB(GLuint, const GLfloat *);
320 glVertexAttrib4fARB(GLuint, GLfloat, GLfloat, GLfloat, GLfloat);
321 glVertexAttrib4fvARB(GLuint, const GLfloat *);
331 glVertexAttrib1fNV(GLuint, GLfloat);
332 glVertexAttrib1fvNV(GLuint, const GLfloat *);
337 glVertexAttrib2fNV(GLuint, GLfloat, GLfloat);
338 glVertexAttrib2fvNV(GLuint, const GLfloat *);
343 glVertexAttrib3fNV(GLuint, GLfloat, GLfloat, GLfloat);
344 glVertexAttrib3fvNV(GLuint, const GLfloat *);
349 glVertexAttrib4fNV(GLuint, GLfloat, GLfloat, GLfloat, GLfloat);
350 glVertexAttrib4fvNV(GLuint, const GLfloat *);
357 glVertexAttribs1fvNV(GLuint, GLsizei, const GLfloat *);
360 glVertexAttribs2fvNV(GLuint, GLsizei, const GLfloat *);
363 glVertexAttribs3fvNV(GLuint, GLsizei, const GLfloat *);
366 glVertexAttribs4fvNV(GLuint, GLsizei, const GLfloat *);