diff options
author | José Fonseca <jfonseca@vmware.com> | 2010-04-12 15:08:05 +0900 |
---|---|---|
committer | José Fonseca <jfonseca@vmware.com> | 2010-04-12 15:32:23 +0900 |
commit | 19211bb5b8fa406fde294ec84f814e3b7881c474 (patch) | |
tree | b8ee78981259be11e0c583bd85284e9bfbdba29d /progs/gallium/python/samples/tri.py | |
parent | c48f21ea7cb9634c1865514f069b8c0993cb5daf (diff) |
progs/gallium/python: Try to fix most regressions.
Not enough for retrace to work again though.
Diffstat (limited to 'progs/gallium/python/samples/tri.py')
-rw-r--r-- | progs/gallium/python/samples/tri.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/progs/gallium/python/samples/tri.py b/progs/gallium/python/samples/tri.py index 8cc272db81..fed929d420 100644 --- a/progs/gallium/python/samples/tri.py +++ b/progs/gallium/python/samples/tri.py @@ -134,15 +134,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 |