diff options
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/main/texenvprogram.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/mesa/main/texenvprogram.c b/src/mesa/main/texenvprogram.c index 0b975e675f5..c99ff5cdc46 100644 --- a/src/mesa/main/texenvprogram.c +++ b/src/mesa/main/texenvprogram.c @@ -1095,13 +1095,6 @@ create_new_program(GLcontext *ctx, struct state_key *key, ASSERT(p.program->Base.NumInstructions <= MAX_INSTRUCTIONS); /* Allocate final instruction array */ - { - static int max=0; - if (program->Base.NumInstructions> max) { - max = program->Base.NumInstructions; - printf("%d inst max\n", max); - } - } program->Base.Instructions = _mesa_alloc_instructions(program->Base.NumInstructions); if (!program->Base.Instructions) { |