diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2008-08-27 11:30:14 -0600 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2008-08-27 13:22:54 -0600 |
commit | 8eb85f6f2a87e8a176569ad2270973024272fb21 (patch) | |
tree | 93231b15a4c4e2558f216984db82f4afe2c6a9e5 | |
parent | 6f33b778ae3130571d17a110187379ec0beecbd8 (diff) |
gallium: remove old assertions
-rw-r--r-- | src/mesa/state_tracker/st_atom_shader.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/mesa/state_tracker/st_atom_shader.c b/src/mesa/state_tracker/st_atom_shader.c index 6594e59e94..cbd414e2d3 100644 --- a/src/mesa/state_tracker/st_atom_shader.c +++ b/src/mesa/state_tracker/st_atom_shader.c @@ -266,17 +266,12 @@ find_translated_vp(struct st_context *st, xvp->output_to_semantic_name[outAttr] = TGSI_SEMANTIC_GENERIC; xvp->output_to_semantic_index[outAttr] = maxGeneric + 1; } - - assert(xvp->output_to_semantic_name[outAttr] != TGSI_SEMANTIC_COUNT); - assert(xvp->output_to_semantic_index[outAttr] != 99); } - #if 0 /*debug*/ printf("vp output_to_slot[%d] = %d\n", outAttr, xvp->output_to_slot[outAttr]); #endif - } assert(stvp->Base.Base.NumInstructions > 1); |