diff options
author | Keith Whitwell <[email protected]> | 2010-05-21 16:05:16 +0100 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2010-05-21 16:05:16 +0100 |
commit | 519694e0fcbd776787a69b7cef87c14dd7c99dc5 (patch) | |
tree | 639ca7eb781c80c70f74bce664b85b654eb77bc0 /src/gallium/state_trackers/python | |
parent | ef9b4d20d78a748e653a61286d83f33dc6c46184 (diff) |
gallium: remnants of old ccw state
Diffstat (limited to 'src/gallium/state_trackers/python')
-rw-r--r-- | src/gallium/state_trackers/python/st_device.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/gallium/state_trackers/python/st_device.c b/src/gallium/state_trackers/python/st_device.c index aac28cacfde..dce24bc17d6 100644 --- a/src/gallium/state_trackers/python/st_device.c +++ b/src/gallium/state_trackers/python/st_device.c @@ -184,8 +184,7 @@ st_context_create(struct st_device *st_dev) { struct pipe_rasterizer_state rasterizer; memset(&rasterizer, 0, sizeof(rasterizer)); - rasterizer.front_winding = PIPE_WINDING_CW; - rasterizer.cull_mode = PIPE_WINDING_NONE; + rasterizer.cull_face = PIPE_FACE_NONE; cso_set_rasterizer(st_ctx->cso, &rasterizer); } |