Example #1
0
static void APIENTRY logBindTexture(GLenum target, GLuint texture)
{
	fprintf(log_fp, "glBindTexture( 0x%x, %u )\n", target, texture);
	dllBindTexture(target, texture);
}
Example #2
0
File: qgl.c Project: jayschwa/q2pro
static void APIENTRY logBindTexture(GLenum target, GLuint texture)
{
    SIGf("%s( %#x, %u )\n", "glBindTexture", target, texture);
    dllBindTexture(target, texture);
}