summaryrefslogtreecommitdiffstats
path: root/progs/gallium/python/samples/gs.py
diff options
context:
space:
mode:
authorJosé Fonseca <jfonseca@vmware.com>2010-04-12 15:08:05 +0900
committerJosé Fonseca <jfonseca@vmware.com>2010-04-12 15:32:23 +0900
commit19211bb5b8fa406fde294ec84f814e3b7881c474 (patch)
treeb8ee78981259be11e0c583bd85284e9bfbdba29d /progs/gallium/python/samples/gs.py
parentc48f21ea7cb9634c1865514f069b8c0993cb5daf (diff)
downloadexternal_mesa3d-19211bb5b8fa406fde294ec84f814e3b7881c474.zip
external_mesa3d-19211bb5b8fa406fde294ec84f814e3b7881c474.tar.gz
external_mesa3d-19211bb5b8fa406fde294ec84f814e3b7881c474.tar.bz2
progs/gallium/python: Try to fix most regressions.
Not enough for retrace to work again though.
Diffstat (limited to 'progs/gallium/python/samples/gs.py')
-rw-r--r--progs/gallium/python/samples/gs.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/progs/gallium/python/samples/gs.py b/progs/gallium/python/samples/gs.py
index 5c22269..936c0b3 100644
--- a/progs/gallium/python/samples/gs.py
+++ b/progs/gallium/python/samples/gs.py
@@ -133,15 +133,15 @@ def test(dev):
ctx.set_clip(clip)
# framebuffer
- cbuf = dev.texture_create(
+ cbuf = dev.resource_create(
PIPE_FORMAT_B8G8R8X8_UNORM,
width, height,
- tex_usage=PIPE_TEXTURE_USAGE_RENDER_TARGET,
+ bind=PIPE_BIND_RENDER_TARGET,
).get_surface()
- zbuf = dev.texture_create(
+ zbuf = dev.resource_create(
PIPE_FORMAT_Z32_UNORM,
width, height,
- tex_usage=PIPE_TEXTURE_USAGE_DEPTH_STENCIL,
+ bind=PIPE_BIND_DEPTH_STENCIL,
).get_surface()
fb = Framebuffer()
fb.width = width