mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-04-23 22:30:40 +02:00
fix some semantic info mix-ups in calculate_vertex_layout()
This commit is contained in:
parent
c31416971e
commit
fb4eb8c91b
1 changed files with 4 additions and 8 deletions
|
|
@ -81,21 +81,21 @@ static void calculate_vertex_layout( struct softpipe_context *softpipe )
|
|||
break;
|
||||
|
||||
case TGSI_SEMANTIC_COLOR:
|
||||
if (fs->input_semantic_index[i] == 0) {
|
||||
if (vs->output_semantic_index[i] == 0) {
|
||||
front0 = draw_emit_vertex_attr(vinfo, FORMAT_4F, colorInterp);
|
||||
}
|
||||
else {
|
||||
assert(fs->input_semantic_index[i] == 1);
|
||||
assert(vs->output_semantic_index[i] == 1);
|
||||
front1 = draw_emit_vertex_attr(vinfo, FORMAT_4F, colorInterp);
|
||||
}
|
||||
break;
|
||||
|
||||
case TGSI_SEMANTIC_BCOLOR:
|
||||
if (fs->input_semantic_index[i] == 0) {
|
||||
if (vs->output_semantic_index[i] == 0) {
|
||||
emitBack0 = TRUE;
|
||||
}
|
||||
else {
|
||||
assert(fs->input_semantic_index[i] == 1);
|
||||
assert(vs->output_semantic_index[i] == 1);
|
||||
emitBack1 = TRUE;
|
||||
}
|
||||
break;
|
||||
|
|
@ -121,11 +121,7 @@ static void calculate_vertex_layout( struct softpipe_context *softpipe )
|
|||
}
|
||||
}
|
||||
|
||||
#if 00
|
||||
softpipe->nr_frag_attrs = vinfo->num_attribs;
|
||||
#else
|
||||
softpipe->nr_frag_attrs = fs->num_inputs;
|
||||
#endif
|
||||
|
||||
/* We want these after all other attribs since they won't get passed
|
||||
* to the fragment shader. All prior vertex output attribs should match
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue