diff options
author | Christian König <[email protected]> | 2011-03-20 19:45:06 +0100 |
---|---|---|
committer | Christian König <[email protected]> | 2011-03-20 19:45:06 +0100 |
commit | dd6cd206a6395be651bc965580e17c0d63513c7b (patch) | |
tree | d8c7221d522bcc47d7bca9b511524902b49a862c /src/gallium/drivers | |
parent | 713a52d8564193e222e16aad52758d8fa3b79635 (diff) |
[g3dvl] correctly implement non power of two buffers
Diffstat (limited to 'src/gallium/drivers')
-rw-r--r-- | src/gallium/drivers/r600/r600_video_context.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/r600/r600_video_context.c b/src/gallium/drivers/r600/r600_video_context.c index 0b915d62143..8190c9ae612 100644 --- a/src/gallium/drivers/r600/r600_video_context.c +++ b/src/gallium/drivers/r600/r600_video_context.c @@ -47,7 +47,7 @@ r600_video_create(struct pipe_screen *screen, enum pipe_video_profile profile, return vl_create_mpeg12_context(pipe, profile, chroma_format, width, height, - true, + false, PIPE_FORMAT_XYUV); default: return NULL; |