st/mesa: remove invalid assertion

It's legal for ARB_vertex_program programs to not write to result.position.
The results are undefined in that case.  This assertion was causing us to
abort/exit though.
This commit is contained in:
Brian Paul
2009-06-08 10:44:48 -06:00
parent e09f78d8dc
commit b6753adbc7
-3
View File
@@ -290,9 +290,6 @@ st_translate_vertex_program(struct st_context *st,
}
}
assert(vs_output_semantic_name[0] == TGSI_SEMANTIC_POSITION);
if (outputMapping) {
/* find max output slot referenced to compute vs_num_outputs */
GLuint maxSlot = 0;