예제 #1
0
파일: qgl.c 프로젝트: SinSiXX/Rogue-Reborn
static void APIENTRY logBindTexture(GLenum target, GLuint texture)
{
	fprintf(log_fp, "glBindTexture( 0x%x, %u )\n", target, texture);
	dllBindTexture(target, texture);
}
예제 #2
0
파일: qgl.c 프로젝트: jayschwa/q2pro
static void APIENTRY logBindTexture(GLenum target, GLuint texture)
{
    SIGf("%s( %#x, %u )\n", "glBindTexture", target, texture);
    dllBindTexture(target, texture);
}