diff options
author | Roland Scheidegger <[email protected]> | 2010-02-04 21:35:28 +0100 |
---|---|---|
committer | Roland Scheidegger <[email protected]> | 2010-02-04 21:35:28 +0100 |
commit | 68f93ea3eb83cfad014b8ec93cec3564c1aa9833 (patch) | |
tree | a563ebec246a2e741750a8b5198da180e9479e17 /src/gallium/drivers/trace | |
parent | 2c326e72664e65166c68b027b26aaf373f3be36d (diff) |
gallium: add point_quad_rasterization bit to rasterizer state
This determines if points should be rasterized according to GL point rules
or as normal quads (GL point sprites / d3d points / d3d point sprites).
Diffstat (limited to 'src/gallium/drivers/trace')
-rw-r--r-- | src/gallium/drivers/trace/tr_dump_state.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/trace/tr_dump_state.c b/src/gallium/drivers/trace/tr_dump_state.c index ed327f60f08..720b6cd1ffa 100644 --- a/src/gallium/drivers/trace/tr_dump_state.c +++ b/src/gallium/drivers/trace/tr_dump_state.c @@ -114,6 +114,7 @@ void trace_dump_rasterizer_state(const struct pipe_rasterizer_state *state) trace_dump_member(bool, state, point_smooth); trace_dump_member(uint, state, sprite_coord_enable); trace_dump_member(bool, state, sprite_coord_mode); + trace_dump_member(bool, state, point_quad_rasterization); trace_dump_member(bool, state, point_size_per_vertex); trace_dump_member(bool, state, multisample); trace_dump_member(bool, state, line_smooth); |