diff options
author | Roland Scheidegger <sroland@vmware.com> | 2010-01-25 16:34:29 +0100 |
---|---|---|
committer | Roland Scheidegger <sroland@vmware.com> | 2010-01-25 16:34:29 +0100 |
commit | 3770769f21138ba722a38c1400b501fdcedea17d (patch) | |
tree | 39773cdc7313bd6473360b503b59bf79175fb8ca /src/gallium/state_trackers/python/samples/gs.py | |
parent | feefa7a510058f57a81e5e928cd2fcb63506624f (diff) |
st/python: adapt to blend changes
Diffstat (limited to 'src/gallium/state_trackers/python/samples/gs.py')
-rw-r--r-- | src/gallium/state_trackers/python/samples/gs.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/gallium/state_trackers/python/samples/gs.py b/src/gallium/state_trackers/python/samples/gs.py index a07cf557f2..cd68abac9a 100644 --- a/src/gallium/state_trackers/python/samples/gs.py +++ b/src/gallium/state_trackers/python/samples/gs.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 |