diff options
author | Brian Paul <[email protected]> | 2012-05-22 16:53:04 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2012-05-25 10:02:22 -0600 |
commit | 93ea5cd80b98219100782feb3fee9d7283059036 (patch) | |
tree | f8360883a7f031fbecc10abc36aa596563d1cae7 /src/gallium/drivers/svga/svga_tgsi.h | |
parent | dcb4ec5ae1874d57cc668baac483654e0dfeb4aa (diff) |
svga: remove the special zero-stride vertex array code
This code actually hasn't been needed for some time now. We can just
treat a zero-stride vertex array like any other non-zero-stride array.
Diffstat (limited to 'src/gallium/drivers/svga/svga_tgsi.h')
-rw-r--r-- | src/gallium/drivers/svga/svga_tgsi.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/gallium/drivers/svga/svga_tgsi.h b/src/gallium/drivers/svga/svga_tgsi.h index 7e93bf5aca5..bb0c6d0e029 100644 --- a/src/gallium/drivers/svga/svga_tgsi.h +++ b/src/gallium/drivers/svga/svga_tgsi.h @@ -47,10 +47,8 @@ struct tgsi_token; struct svga_vs_compile_key { unsigned fs_generic_inputs; - unsigned zero_stride_vertex_elements; unsigned need_prescale:1; unsigned allow_psiz:1; - unsigned num_zero_stride_vertex_elements:6; }; struct svga_fs_compile_key |