コード例 #1
0
inline void glTexCoord( const GLshort & s, const GLshort & t, const GLshort & r )	{ glTexCoord3s( s, t, r ); }
コード例 #2
0
ファイル: GEMglTexCoord3s.cpp プロジェクト: megrimm/Gem
/////////////////////////////////////////////////////////
// Render
//
void GEMglTexCoord3s :: render(GemState *state)
{
  glTexCoord3s (s, t, r);
}
コード例 #3
0
ファイル: gl.cpp プロジェクト: dschaefer/swt-opengl
M(void, glTexCoord3s, jshort s, jshort t, jshort r) {
	glTexCoord3s(s, t, r);
}