diff options
author | José Fonseca <jfonseca@vmware.com> | 2010-01-11 13:55:24 +0000 |
---|---|---|
committer | José Fonseca <jfonseca@vmware.com> | 2010-01-11 14:01:06 +0000 |
commit | 76185ecad6c220824b9f9fa96a3323ce38b17d52 (patch) | |
tree | 09a7a73569cc430a7034a01a1138a10b46824280 /src/gallium/state_trackers/python/samples/gs.py | |
parent | 1c75edf3e8ccc97f5f91f42f99c1f8db30b25fc4 (diff) |
python: Set PIPE_TEXTURE_USAGE_RENDER_TARGET instead of DISPLAY_TARGET.
As the python state tracker is not integrated with window system an
cannot present surfaces directly.
Diffstat (limited to 'src/gallium/state_trackers/python/samples/gs.py')
-rw-r--r-- | src/gallium/state_trackers/python/samples/gs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/state_trackers/python/samples/gs.py b/src/gallium/state_trackers/python/samples/gs.py index 1ceead5f17..6cffe3fd06 100644 --- a/src/gallium/state_trackers/python/samples/gs.py +++ b/src/gallium/state_trackers/python/samples/gs.py @@ -136,7 +136,7 @@ def test(dev): cbuf = dev.texture_create( PIPE_FORMAT_X8R8G8B8_UNORM, width, height, - tex_usage=PIPE_TEXTURE_USAGE_DISPLAY_TARGET, + tex_usage=PIPE_TEXTURE_USAGE_RENDER_TARGET, ).get_surface() zbuf = dev.texture_create( PIPE_FORMAT_Z16_UNORM, |