diff options
author | Christian König <[email protected]> | 2010-12-07 21:23:14 +0100 |
---|---|---|
committer | Christian König <[email protected]> | 2010-12-07 21:23:14 +0100 |
commit | 22b4acb2069a368e986805d3b43395172ebf9146 (patch) | |
tree | 088bd9948520b040c6febd6794b8d9727cb79b93 /src/gallium/auxiliary/vl/vl_idct.h | |
parent | bfb4fb057d92869f98dc627d53d3e1b7d031d93f (diff) |
[g3dvl] use buffer width instead of texture size or vs constants
Diffstat (limited to 'src/gallium/auxiliary/vl/vl_idct.h')
-rw-r--r-- | src/gallium/auxiliary/vl/vl_idct.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/vl/vl_idct.h b/src/gallium/auxiliary/vl/vl_idct.h index 96e3d267046..2e98f22bea2 100644 --- a/src/gallium/auxiliary/vl/vl_idct.h +++ b/src/gallium/auxiliary/vl/vl_idct.h @@ -31,10 +31,17 @@ #include <pipe/p_state.h> #include "vl_vertex_buffers.h" +struct vl_idct_buffer +{ +}; + struct vl_idct { struct pipe_context *pipe; + unsigned buffer_width; + unsigned buffer_height; + unsigned max_blocks; struct pipe_viewport_state viewport[2]; |