diff options
author | Christian König <[email protected]> | 2010-12-09 22:27:03 +0100 |
---|---|---|
committer | Christian König <[email protected]> | 2010-12-09 22:27:03 +0100 |
commit | 7c4887f5ae642131d7895da5bffda77a6287c6d4 (patch) | |
tree | 1f8e6d8ea900fd90c9fd475d369e1999fd97973a /src/gallium/auxiliary/vl/vl_idct.c | |
parent | 1e3f5e9520940592dae1c37bb4c8d3fc156aa5d5 (diff) |
[g3dvl] fix idct matrix upload
Diffstat (limited to 'src/gallium/auxiliary/vl/vl_idct.c')
-rw-r--r-- | src/gallium/auxiliary/vl/vl_idct.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/vl/vl_idct.c b/src/gallium/auxiliary/vl/vl_idct.c index 0a81134a789..087ac6e71bb 100644 --- a/src/gallium/auxiliary/vl/vl_idct.c +++ b/src/gallium/auxiliary/vl/vl_idct.c @@ -496,7 +496,7 @@ vl_idct_upload_matrix(struct pipe_context *pipe) struct pipe_box rect = { 0, 0, 0, - BLOCK_WIDTH, + BLOCK_WIDTH / 4, BLOCK_HEIGHT, 1 }; |