diff options
author | Keith Whitwell <[email protected]> | 2008-04-04 17:02:20 +0100 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2008-04-04 17:05:27 +0100 |
commit | 84501e68f6294370d6f2f6aec4e7eab57bcc0e72 (patch) | |
tree | 3b4cb6e98d90468f5a5863b9672a9b9f84f35a4b /src/gallium/include/pipe/p_context.h | |
parent | 1d6877b32642d718fb7b29eca647f4d1dd0f99bb (diff) |
gallium: Handle client-supplied edgeflags.
Also, implement support in the draw module. We were hardwiring these
to one for quite a long time...
Currently using a draw_set_edgeflags() function, may be better to push
the argument into the draw_arrays() function. TBD.
Diffstat (limited to 'src/gallium/include/pipe/p_context.h')
-rw-r--r-- | src/gallium/include/pipe/p_context.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/gallium/include/pipe/p_context.h b/src/gallium/include/pipe/p_context.h index 324f70185af..f3a9c2cd8b2 100644 --- a/src/gallium/include/pipe/p_context.h +++ b/src/gallium/include/pipe/p_context.h @@ -57,6 +57,14 @@ struct pipe_context { void (*destroy)( struct pipe_context * ); + + /* Possible interface for setting edgeflags. These aren't really + * vertex elements, so don't fit there. + */ + void (*set_edgeflags)( struct pipe_context *, + const unsigned *bitfield ); + + /** * VBO drawing (return false on fallbacks (temporary??)) */ |