diff options
author | Brian <[email protected]> | 2008-02-27 18:46:54 -0700 |
---|---|---|
committer | Brian <[email protected]> | 2008-02-27 18:46:54 -0700 |
commit | 1774b177b858f9f87d00e54b0bf00e9634e375e9 (patch) | |
tree | d657dba4bcadf9bedaac1bcbba3f4b56e7fc593a /src/gallium/auxiliary/draw/draw_context.h | |
parent | 627efcaa8009bb7ed6a7f266f8122df800bb2706 (diff) |
gallium: added draw_num_vs_outputs() to query number of post-transform vertex attribs
Diffstat (limited to 'src/gallium/auxiliary/draw/draw_context.h')
-rw-r--r-- | src/gallium/auxiliary/draw/draw_context.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/draw/draw_context.h b/src/gallium/auxiliary/draw/draw_context.h index d6685f479b1..99bfef55f43 100644 --- a/src/gallium/auxiliary/draw/draw_context.h +++ b/src/gallium/auxiliary/draw/draw_context.h @@ -112,6 +112,10 @@ int draw_find_vs_output(struct draw_context *draw, uint semantic_name, uint semantic_index); +uint +draw_num_vs_outputs(struct draw_context *draw); + + /* * Vertex shader functions |