diff options
author | Hui Qi Tay <hqtay@vmware.com> | 2010-08-10 11:41:32 +0100 |
---|---|---|
committer | Keith Whitwell <keithw@vmware.com> | 2010-08-27 10:59:12 +0100 |
commit | 417bb515c76e7a5dd577766fe1190545c24a1dbc (patch) | |
tree | 192446a8654449e8ef1479601963e2818d03db8c /src/gallium/drivers/llvmpipe/lp_setup_context.h | |
parent | 4d26c830a0f81978266dfada9a7ac0718c8f3135 (diff) |
llvmpipe: point sprites rasterization
Point sprites now done in the rasterizer setup code instead of
going through the draw module.
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_setup_context.h')
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_setup_context.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_setup_context.h b/src/gallium/drivers/llvmpipe/lp_setup_context.h index 7d486afbbf..877a492c6d 100644 --- a/src/gallium/drivers/llvmpipe/lp_setup_context.h +++ b/src/gallium/drivers/llvmpipe/lp_setup_context.h @@ -74,6 +74,7 @@ struct lp_setup_context uint prim; uint vertex_size; uint nr_vertices; + uint sprite; uint vertex_buffer_size; void *vertex_buffer; @@ -89,6 +90,7 @@ struct lp_setup_context boolean flatshade_first; boolean ccw_is_frontface; boolean scissor_test; + boolean point_size_per_vertex; unsigned cullmode; float pixel_offset; float line_width; |