コード例 #1
0
ファイル: gl.cpp プロジェクト: dschaefer/swt-opengl
M(void, glRasterPos4i, jint x, jint y, jint z, jint w) {
	glRasterPos4i(x, y, z, w);
}
コード例 #2
0
ファイル: OpenGLWrapper.hpp プロジェクト: Kubeu/trunk
template< > inline void glRasterPos4< int >			(int x,int y,int z, int w )		{	glRasterPos4i(x,y,z,w);	};
コード例 #3
0
ファイル: GEMglRasterPos4i.cpp プロジェクト: umlaeute/Gem
/////////////////////////////////////////////////////////
// Render
//
void GEMglRasterPos4i :: render(GemState *state)
{
  glRasterPos4i (x, y, z, w);
}