aboutsummaryrefslogtreecommitdiffstats
path: root/src/gallium/auxiliary/vl/vl_mpeg12_mc_renderer.h
diff options
context:
space:
mode:
authorChristian König <[email protected]>2010-12-08 02:12:24 +0100
committerChristian König <[email protected]>2010-12-08 02:12:24 +0100
commit0b749d6dcb537472771d6fe6e454aafc916ab3fe (patch)
tree5c581343dc3484443cbbc8740e96709bfed1bccd /src/gallium/auxiliary/vl/vl_mpeg12_mc_renderer.h
parent22b4acb2069a368e986805d3b43395172ebf9146 (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.h3
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;