Lines Matching refs:Imath
46 inline void glVertex ( const Imath::V3f &v ) { glVertex3f(v.x,v.y,v.z); } in glVertex()
47 inline void glVertex ( const Imath::V2f &v ) { glVertex2f(v.x,v.y); } in glVertex()
48 inline void glNormal ( const Imath::V3f &n ) { glNormal3f(n.x,n.y,n.z); } in glNormal()
49 inline void glColor ( const Imath::V3f &c ) { glColor3f(c.x,c.y,c.z); } in glColor()
50 inline void glTranslate ( const Imath::V3f &t ) { glTranslatef(t.x,t.y,t.z); } in glTranslate()
52 inline void glTexCoord( const Imath::V2f &t ) in glTexCoord()
73 return !Imath::finitef (f) || f < - GL_FLOAT_MAX || f > GL_FLOAT_MAX; in badFloat()
79 throwBadMatrix (const Imath::M44f& m) in throwBadMatrix()
101 glMultMatrix( const Imath::M44f& m ) in glMultMatrix()
108 glMultMatrix( const Imath::M44f* m ) in glMultMatrix()
115 glLoadMatrix( const Imath::M44f& m ) in glLoadMatrix()
122 glLoadMatrix( const Imath::M44f* m ) in glLoadMatrix()
129 namespace Imath {