diff options
author | Zack Rusin <[email protected]> | 2008-06-10 16:59:44 -0400 |
---|---|---|
committer | Zack Rusin <[email protected]> | 2008-06-12 15:08:12 -0400 |
commit | 74964ff04d89be430944dd8106bf5c97a9933f85 (patch) | |
tree | 88cfd6185fa57fba80f7fff53e3083e4043d7619 /src/mesa/shader/arbprogparse.c | |
parent | 0440f5a187460078095f35902638300fee1c5158 (diff) |
glsl: implement variable array indexes
Diffstat (limited to 'src/mesa/shader/arbprogparse.c')
-rw-r--r-- | src/mesa/shader/arbprogparse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/shader/arbprogparse.c b/src/mesa/shader/arbprogparse.c index 60aaabe679f..97bda9c6b38 100644 --- a/src/mesa/shader/arbprogparse.c +++ b/src/mesa/shader/arbprogparse.c @@ -3869,7 +3869,7 @@ _mesa_parse_arb_fragment_program(GLcontext* ctx, GLenum target, program->Base.Parameters = ap.Base.Parameters; #if DEBUG_FP - _mesa_printf("____________Fragment program %u ________\n", program->Base.ID); + _mesa_printf("____________Fragment program %u ________\n", program->Base.Id); _mesa_print_program(&program->Base); #endif } |