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/tests/surface_copy.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/tests/surface_copy.py')
-rwxr-xr-x | progs/gallium/python/tests/surface_copy.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/progs/gallium/python/tests/surface_copy.py b/progs/gallium/python/tests/surface_copy.py index 3eefa690bd..8d84164403 100755 --- a/progs/gallium/python/tests/surface_copy.py +++ b/progs/gallium/python/tests/surface_copy.py @@ -71,35 +71,35 @@ class TextureTest(TestCase): level = self.level zslice = self.zslice - tex_usage = PIPE_TEXTURE_USAGE_SAMPLER + bind = PIPE_BIND_SAMPLER_VIEW geom_flags = 0 - if not dev.is_format_supported(format, target, tex_usage, geom_flags): + if not dev.is_format_supported(format, target, bind, geom_flags): raise TestSkip - if not dev.is_format_supported(format, target, tex_usage, geom_flags): + if not dev.is_format_supported(format, target, bind, geom_flags): raise TestSkip # textures - dst_texture = dev.texture_create( + dst_texture = dev.resource_create( target = target, format = format, width = width, height = height, depth = depth, last_level = last_level, - tex_usage = tex_usage, + bind = bind, ) dst_surface = dst_texture.get_surface(face = face, level = level, zslice = zslice) - src_texture = dev.texture_create( + src_texture = dev.resource_create( target = target, format = format, width = dst_surface.width, height = dst_surface.height, depth = 1, last_level = 0, - tex_usage = PIPE_TEXTURE_USAGE_SAMPLER, + bind = PIPE_BIND_SAMPLER_VIEW, ) src_surface = src_texture.get_surface() |