diff options
author | Christian König <[email protected]> | 2010-12-08 02:12:24 +0100 |
---|---|---|
committer | Christian König <[email protected]> | 2010-12-08 02:12:24 +0100 |
commit | 0b749d6dcb537472771d6fe6e454aafc916ab3fe (patch) | |
tree | 5c581343dc3484443cbbc8740e96709bfed1bccd /src/gallium/auxiliary/vl/vl_mpeg12_mc_renderer.h | |
parent | 22b4acb2069a368e986805d3b43395172ebf9146 (diff) |
[g3dvl] split idct code into state and buffers
Diffstat (limited to 'src/gallium/auxiliary/vl/vl_mpeg12_mc_renderer.h')
-rw-r--r-- | src/gallium/auxiliary/vl/vl_mpeg12_mc_renderer.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/vl/vl_mpeg12_mc_renderer.h b/src/gallium/auxiliary/vl/vl_mpeg12_mc_renderer.h index 6ce9cbe390c..f1c7a2a4012 100644 --- a/src/gallium/auxiliary/vl/vl_mpeg12_mc_renderer.h +++ b/src/gallium/auxiliary/vl/vl_mpeg12_mc_renderer.h @@ -80,7 +80,8 @@ struct vl_mpeg12_mc_renderer struct pipe_viewport_state viewport; struct pipe_framebuffer_state fb_state; - struct vl_idct idct_y, idct_cb, idct_cr; + struct vl_idct idct_luma, idct_chroma; + struct vl_idct_buffer idct_y, idct_cb, idct_cr; void *rs_state; |