diff options
author | Roland Scheidegger <[email protected]> | 2009-12-16 22:12:16 +0100 |
---|---|---|
committer | Roland Scheidegger <[email protected]> | 2009-12-16 22:12:16 +0100 |
commit | 50caff5675888c0063c73fa64b88129db7aa11dd (patch) | |
tree | f01b9ae711eccbc022b29cfc631f15e38a61da47 /src/mesa/state_tracker/st_program.h | |
parent | a0127b6ced257919180ba3a1bf534b68d9c750be (diff) |
gallium: edgeflags change fixes
use correct number of vertex inputs
fix not running pipeline in case of edgeflags
changes to mesa to tgsi translation still very broken
Diffstat (limited to 'src/mesa/state_tracker/st_program.h')
-rw-r--r-- | src/mesa/state_tracker/st_program.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/state_tracker/st_program.h b/src/mesa/state_tracker/st_program.h index 91392785e55..6b9a9226df5 100644 --- a/src/mesa/state_tracker/st_program.h +++ b/src/mesa/state_tracker/st_program.h @@ -100,6 +100,9 @@ struct st_vp_varient /** Next in linked list */ struct st_vp_varient *next; + + /** similar to that in st_vertex_program, but with information about edgeflags too */ + GLuint num_inputs; }; |