diff options
author | Jordan Justen <[email protected]> | 2012-05-07 15:50:21 -0700 |
---|---|---|
committer | Jordan Justen <[email protected]> | 2012-05-17 10:54:26 -0700 |
commit | bc8e0f5b0ff82c919ed1ee67e4fad55705937b30 (patch) | |
tree | b0bda74afbe132214c266d3e019e59bf713f6ceb /src/mesa/sources.mak | |
parent | 5a827d9a2b5d698fed98a5d62ff0292b48bdd6c7 (diff) |
vbo: add software primitive restart support
vbo_sw_primitive_restart implements primitive restart in software
by splitting primitive draws apart.
This is based on similar support in mesa/state_tracker/st_draw.c.
Signed-off-by: Jordan Justen <[email protected]>
Reviewed-by: Ian Romanick <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa/sources.mak')
-rw-r--r-- | src/mesa/sources.mak | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/sources.mak b/src/mesa/sources.mak index c746b8afa68..19a05ecc8a9 100644 --- a/src/mesa/sources.mak +++ b/src/mesa/sources.mak @@ -184,6 +184,7 @@ VBO_SOURCES = \ vbo/vbo_exec_draw.c \ vbo/vbo_exec_eval.c \ vbo/vbo_noop.c \ + vbo/vbo_primitive_restart.c \ vbo/vbo_rebase.c \ vbo/vbo_split.c \ vbo/vbo_split_copy.c \ |