diff options
author | Christian König <[email protected]> | 2011-04-27 10:41:19 +0200 |
---|---|---|
committer | Christian König <[email protected]> | 2011-04-27 10:41:19 +0200 |
commit | 76d881b8b086495081c0a3c8fea2278f1480f107 (patch) | |
tree | fbf933d99c46b1f09ec3b0d3c1e221b00e6d5703 /src/gallium/auxiliary/vl/vl_compositor.h | |
parent | e602ecf9ef2f66289bcb159fdbdce2c76e3c07c1 (diff) |
[g3dvl] fix a couple of bugs around paletted subpictures
Diffstat (limited to 'src/gallium/auxiliary/vl/vl_compositor.h')
-rw-r--r-- | src/gallium/auxiliary/vl/vl_compositor.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/vl/vl_compositor.h b/src/gallium/auxiliary/vl/vl_compositor.h index c7da533c988..0bce04fcbf8 100644 --- a/src/gallium/auxiliary/vl/vl_compositor.h +++ b/src/gallium/auxiliary/vl/vl_compositor.h @@ -39,6 +39,7 @@ struct pipe_context; struct vl_compositor_layer { void *fs; + void *samplers[3]; struct pipe_sampler_view *sampler_views[3]; struct pipe_video_rect src_rect; struct pipe_video_rect dst_rect; @@ -54,7 +55,8 @@ struct vl_compositor struct pipe_vertex_buffer vertex_buf; struct pipe_resource *csc_matrix; - void *sampler; + void *sampler_linear; + void *sampler_nearest; void *blend; void *rast; void *vertex_elems_state; |