diff options
author | Christoph Bumiller <[email protected]> | 2011-09-24 13:22:29 +0200 |
---|---|---|
committer | Christoph Bumiller <[email protected]> | 2011-09-28 16:28:17 +0200 |
commit | 16f8308c3df020a786908be065d3dcb90c8ca2a5 (patch) | |
tree | 92795591dce6eed395d80a1bbb4041952e78375a /src/gallium/auxiliary/util/u_dump_state.c | |
parent | f83af361a4e44ee89c63e769501ed93caa22e30f (diff) |
gallium: add polygon offset clamp state
This is required for D3D1x and supported by hardware.
Diffstat (limited to 'src/gallium/auxiliary/util/u_dump_state.c')
-rw-r--r-- | src/gallium/auxiliary/util/u_dump_state.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/util/u_dump_state.c b/src/gallium/auxiliary/util/u_dump_state.c index 6bb36996632..8a7ec584846 100644 --- a/src/gallium/auxiliary/util/u_dump_state.c +++ b/src/gallium/auxiliary/util/u_dump_state.c @@ -332,6 +332,7 @@ util_dump_rasterizer_state(struct os_stream *stream, const struct pipe_rasterize util_dump_member(stream, float, state, point_size); util_dump_member(stream, float, state, offset_units); util_dump_member(stream, float, state, offset_scale); + util_dump_member(stream, float, state, offset_clamp); util_dump_struct_end(stream); } |