diff options
author | Brian <brian@yutani.localnet.net> | 2007-01-10 13:33:38 -0700 |
---|---|---|
committer | Brian <brian@yutani.localnet.net> | 2007-01-10 13:33:38 -0700 |
commit | 88e2dbfd10129eab2c7f4a935358a6ab2a18bf65 (patch) | |
tree | 11dd7ef5cbacf8e3792cbff6fefc0032619d7eef /src/mesa/shader/shader_api.c | |
parent | 8a48f3557424cfa67269ae5e4dca100ae2a0ddda (diff) |
checkpoint: codegen for global vars w/ initializers
Diffstat (limited to 'src/mesa/shader/shader_api.c')
-rw-r--r-- | src/mesa/shader/shader_api.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/shader/shader_api.c b/src/mesa/shader/shader_api.c index 69314b225a..c18bbcec4b 100644 --- a/src/mesa/shader/shader_api.c +++ b/src/mesa/shader/shader_api.c @@ -307,9 +307,10 @@ _mesa_bind_attrib_location(GLcontext *ctx, GLuint program, GLuint index, _slang_remap_attribute(&shProg->VertexProgram->Base, oldIndex, index); } +#if 0 printf("===== post BindAttrib:\n"); _mesa_print_program(&shProg->VertexProgram->Base); - +#endif } |