diff options
author | José Fonseca <[email protected]> | 2011-03-12 20:52:13 +0000 |
---|---|---|
committer | José Fonseca <[email protected]> | 2011-03-13 18:56:07 +0000 |
commit | b79b05e17e197a7cdc523deff8f7ea456a91e8d0 (patch) | |
tree | 1b68522fcbfdab38845c66f021412cf2e08fc12c /src/gallium/auxiliary/draw/draw_vs.h | |
parent | c448a556e9f97dd059de99048b75ebf6d51e1d7c (diff) |
draw: Fix draw_variant_output::format's type.
Diffstat (limited to 'src/gallium/auxiliary/draw/draw_vs.h')
-rw-r--r-- | src/gallium/auxiliary/draw/draw_vs.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/draw/draw_vs.h b/src/gallium/auxiliary/draw/draw_vs.h index bfb72d50efa..e6d187e9774 100644 --- a/src/gallium/auxiliary/draw/draw_vs.h +++ b/src/gallium/auxiliary/draw/draw_vs.h @@ -33,6 +33,7 @@ #include "draw_context.h" #include "draw_private.h" +#include "draw_vertex.h" struct draw_context; @@ -48,7 +49,7 @@ struct draw_variant_input struct draw_variant_output { - enum pipe_format format; /* output format */ + enum attrib_emit format; /* output format */ unsigned vs_output:8; /* which vertex shader output is this? */ unsigned offset:24; /* offset into output vertex */ }; |