diff options
author | Roland Scheidegger <[email protected]> | 2009-12-14 18:36:33 +0100 |
---|---|---|
committer | Roland Scheidegger <[email protected]> | 2009-12-14 18:36:33 +0100 |
commit | a0127b6ced257919180ba3a1bf534b68d9c750be (patch) | |
tree | 2b7393c210947a009b654c07da9c4732cc51bade /src/gallium/auxiliary/draw/draw_vs.c | |
parent | a08e348a84f57ed5e8bf5888f1ce13934d2ce8fa (diff) |
gallium: more work for edgeflags changes
fixes, cleanups, etc.
not working yet
Diffstat (limited to 'src/gallium/auxiliary/draw/draw_vs.c')
-rw-r--r-- | src/gallium/auxiliary/draw/draw_vs.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/draw/draw_vs.c b/src/gallium/auxiliary/draw/draw_vs.c index 790e89ed820..35536895326 100644 --- a/src/gallium/auxiliary/draw/draw_vs.c +++ b/src/gallium/auxiliary/draw/draw_vs.c @@ -101,6 +101,9 @@ draw_create_vertex_shader(struct draw_context *draw, if (vs->info.output_semantic_name[i] == TGSI_SEMANTIC_POSITION && vs->info.output_semantic_index[i] == 0) vs->position_output = i; + else if (vs->info.output_semantic_name[i] == TGSI_SEMANTIC_EDGEFLAG && + vs->info.output_semantic_index[i] == 0) + vs->edgeflag_output = i; } } @@ -120,6 +123,7 @@ draw_bind_vertex_shader(struct draw_context *draw, draw->vs.vertex_shader = dvs; draw->vs.num_vs_outputs = dvs->info.num_outputs; draw->vs.position_output = dvs->position_output; + draw->vs.edgeflag_output = dvs->edgeflag_output; dvs->prepare( dvs, draw ); } else { |