diff options
author | Brian Paul <[email protected]> | 2002-06-23 02:40:48 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2002-06-23 02:40:48 +0000 |
commit | d65e0beb688210a74a9814dd86c896262c5f03de (patch) | |
tree | 8128719125778a684730b9d3c5c13e35fff8c67d /src/mesa/tnl/t_vb_program.c | |
parent | 455d262c55c50f5693e4385c1a997e76e9416f62 (diff) |
set stage->inputs properly (I think), plus debug/comment updates
Diffstat (limited to 'src/mesa/tnl/t_vb_program.c')
-rw-r--r-- | src/mesa/tnl/t_vb_program.c | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/src/mesa/tnl/t_vb_program.c b/src/mesa/tnl/t_vb_program.c index d89d006d4f6..5790bf79d21 100644 --- a/src/mesa/tnl/t_vb_program.c +++ b/src/mesa/tnl/t_vb_program.c @@ -1,4 +1,4 @@ -/* $Id: t_vb_program.c,v 1.12 2002/04/21 20:37:04 brianp Exp $ */ +/* $Id: t_vb_program.c,v 1.13 2002/06/23 02:40:48 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -211,15 +211,15 @@ static GLboolean run_vp( GLcontext *ctx, struct gl_pipeline_stage *stage ) _mesa_exec_program(ctx, program); #if 0 printf("Output %d: %f, %f, %f, %f\n", i, - machine->Registers[VP_OUT_HPOS][0], - machine->Registers[VP_OUT_HPOS][1], - machine->Registers[VP_OUT_HPOS][2], - machine->Registers[VP_OUT_HPOS][3]); + machine->Registers[VP_OUTPUT_REG_START + 0][0], + machine->Registers[VP_OUTPUT_REG_START + 0][1], + machine->Registers[VP_OUTPUT_REG_START + 0][2], + machine->Registers[VP_OUTPUT_REG_START + 0][3]); printf(" color: %f, %f, %f, %f\n", - machine->Registers[VP_OUT_COL0][0], - machine->Registers[VP_OUT_COL0][1], - machine->Registers[VP_OUT_COL0][2], - machine->Registers[VP_OUT_COL0][3]); + machine->Registers[VP_OUTPUT_REG_START +_1][0], + machine->Registers[VP_OUTPUT_REG_START + 1][1], + machine->Registers[VP_OUTPUT_REG_START + 1][2], + machine->Registers[VP_OUTPUT_REG_START + 1][3]); printf("PointSize[%d]: %g\n", i, machine->Registers[VP_OUTPUT_REG_START + VERT_RESULT_PSIZ][0]); #endif @@ -403,13 +403,13 @@ static void check_vp( GLcontext *ctx, struct gl_pipeline_stage *stage ) stage->active = ctx->VertexProgram.Enabled; if (stage->active) { - /* XXX what do we need here??? - * - * I think that: - * stage->inputs = ctx->VertexProgram.Current->InputsRead; - * would be correct, and something similar for the outputs. + /* I believe this is right - Keith? + * Set stage->inputs equal to the bitmask of vertex attributes + * which the program needs for inputs. */ + stage->inputs = ctx->VertexProgram.Current->InputsRead; + #if 000 if (stage->privatePtr) stage->run = run_validate_program; |