summaryrefslogtreecommitdiffstats
path: root/src/gallium/auxiliary/vl/vl_idct.h
diff options
context:
space:
mode:
authorChristian König <[email protected]>2011-03-08 21:30:33 +0100
committerChristian König <[email protected]>2011-03-08 21:30:33 +0100
commit37a548c9d1db6bbf8712277f678d850f34d0e445 (patch)
treedd5792d09c70d8639226c549709a8819a9bae7ba /src/gallium/auxiliary/vl/vl_idct.h
parent310eea52ca1e997295c84163066cc5d0fd4f8cf6 (diff)
[g3dvl] start to cleanup the mess
Move the vertex buffer out of the mc code
Diffstat (limited to 'src/gallium/auxiliary/vl/vl_idct.h')
-rw-r--r--src/gallium/auxiliary/vl/vl_idct.h10
1 files changed, 1 insertions, 9 deletions
diff --git a/src/gallium/auxiliary/vl/vl_idct.h b/src/gallium/auxiliary/vl/vl_idct.h
index 78e4a46369d..0ff12cf466d 100644
--- a/src/gallium/auxiliary/vl/vl_idct.h
+++ b/src/gallium/auxiliary/vl/vl_idct.h
@@ -40,7 +40,6 @@ struct vl_idct
unsigned blocks_x, blocks_y;
void *rs_state;
- void *vertex_elems_state;
union
{
@@ -56,7 +55,6 @@ struct vl_idct
void *matrix_fs, *transpose_fs;
struct pipe_resource *matrix;
- struct pipe_vertex_buffer quad;
};
struct vl_idct_buffer
@@ -86,12 +84,6 @@ struct vl_idct_buffer
} individual;
} textures;
- union
- {
- struct pipe_vertex_buffer all[2];
- struct { struct pipe_vertex_buffer quad, stream; } individual;
- } vertex_bufs;
-
struct pipe_transfer *tex_transfer;
short *texels;
};
@@ -106,7 +98,7 @@ bool vl_idct_init(struct vl_idct *idct, struct pipe_context *pipe,
void vl_idct_cleanup(struct vl_idct *idct);
bool vl_idct_init_buffer(struct vl_idct *idct, struct vl_idct_buffer *buffer,
- struct pipe_resource *dst, struct pipe_vertex_buffer stream);
+ struct pipe_resource *dst);
void vl_idct_cleanup_buffer(struct vl_idct *idct, struct vl_idct_buffer *buffer);