summaryrefslogtreecommitdiff
path: root/src/mesa/main
diff options
context:
space:
mode:
authorKeith Whitwell <keith@tungstengraphics.com>2004-02-14 15:49:55 +0000
committerKeith Whitwell <keith@tungstengraphics.com>2004-02-14 15:49:55 +0000
commit0200947f5e35f1dc7baae776d2e3a8206860335a (patch)
treee818f31aedef87fb8e3836f1aa6e91d08679264f /src/mesa/main
parent964e5325bdcca702cfb2f210e0b89809e42847ef (diff)
Remove debug
Diffstat (limited to 'src/mesa/main')
-rw-r--r--src/mesa/main/program.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/mesa/main/program.c b/src/mesa/main/program.c
index fe53656630..2fc52d9bd4 100644
--- a/src/mesa/main/program.c
+++ b/src/mesa/main/program.c
@@ -149,7 +149,6 @@ static struct program * _mesa_init_program_struct( GLcontext *ctx,
prog->RefCount = 1;
}
- fprintf(stderr, "%s %x %x\n", __FUNCTION__, target, prog);
return prog;
}
@@ -189,7 +188,6 @@ struct program * _mesa_init_vertex_program( GLcontext *ctx,
struct program *
_mesa_new_program(GLcontext *ctx, GLenum target, GLuint id)
{
- fprintf(stderr, "%s\n", __FUNCTION__);
switch (target) {
case GL_VERTEX_PROGRAM_ARB: /* == GL_VERTEX_PROGRAM_NV */
return _mesa_init_vertex_program( ctx, CALLOC_STRUCT(vertex_program),