コード例 #1
0
inline void glColor( const GLuint & red, const GLuint & green, const GLuint & blue, const GLuint & alpha )		{ glColor4ui( red, green, blue, alpha ); }
コード例 #2
0
ファイル: GEMglColor4ui.cpp プロジェクト: kmatheussen/libpd
/////////////////////////////////////////////////////////
// Render
//
void GEMglColor4ui :: render(GemState *state) {
	glColor4ui (red, green, blue, alpha);
}
コード例 #3
0
ファイル: gl.cpp プロジェクト: dschaefer/swt-opengl
M(void, glColor4ui, jint red, jint green, jint blue, jint alpha) {
	glColor4ui(red, green, blue, alpha);
}