summaryrefslogtreecommitdiff
path: root/src/gallium/state_trackers/python/samples/tri.py
diff options
context:
space:
mode:
authorRoland Scheidegger <sroland@vmware.com>2010-01-25 16:34:29 +0100
committerRoland Scheidegger <sroland@vmware.com>2010-01-25 16:34:29 +0100
commit3770769f21138ba722a38c1400b501fdcedea17d (patch)
tree39773cdc7313bd6473360b503b59bf79175fb8ca /src/gallium/state_trackers/python/samples/tri.py
parentfeefa7a510058f57a81e5e928cd2fcb63506624f (diff)
st/python: adapt to blend changes
Diffstat (limited to 'src/gallium/state_trackers/python/samples/tri.py')
-rw-r--r--src/gallium/state_trackers/python/samples/tri.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/gallium/state_trackers/python/samples/tri.py b/src/gallium/state_trackers/python/samples/tri.py
index e5e168bdc8..f0b5e3dc98 100644
--- a/src/gallium/state_trackers/python/samples/tri.py
+++ b/src/gallium/state_trackers/python/samples/tri.py
@@ -72,11 +72,11 @@ def test(dev):
# disabled blending/masking
blend = Blend()
- blend.rgb_src_factor = PIPE_BLENDFACTOR_ONE
- blend.alpha_src_factor = PIPE_BLENDFACTOR_ONE
- blend.rgb_dst_factor = PIPE_BLENDFACTOR_ZERO
- blend.alpha_dst_factor = PIPE_BLENDFACTOR_ZERO
- blend.colormask = PIPE_MASK_RGBA
+ blend.rt[0].rgb_src_factor = PIPE_BLENDFACTOR_ONE
+ blend.rt[0].alpha_src_factor = PIPE_BLENDFACTOR_ONE
+ blend.rt[0].rgb_dst_factor = PIPE_BLENDFACTOR_ZERO
+ blend.rt[0].alpha_dst_factor = PIPE_BLENDFACTOR_ZERO
+ blend.rt[0].colormask = PIPE_MASK_RGBA
ctx.set_blend(blend)
# depth/stencil/alpha