g3dvl: Fix support for bicubic resizing
[mesa/nouveau-pmpeg.git] / src / gallium / auxiliary / vl / vl_compositor.h
blob7bfce13a53eb86b83c37cfb9c257a66add68f458
1 /**************************************************************************
3 * Copyright 2009 Younes Manton.
4 * All Rights Reserved.
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
21 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26 **************************************************************************/
28 #ifndef vl_compositor_h
29 #define vl_compositor_h
31 #include "pipe/p_state.h"
32 #include "pipe/p_video_decoder.h"
33 #include "pipe/p_video_state.h"
35 #include "vl_types.h"
37 struct pipe_context;
39 /**
40 * composing and displaying of image data
43 #define VL_COMPOSITOR_MAX_LAYERS 16
44 #define VL_COMPOSITOR_SAMPLERS 4
46 struct vl_compositor_layer
48 bool clearing, custom_dest_rect;
50 void *fs;
51 void *samplers[VL_COMPOSITOR_SAMPLERS];
52 void *blend;
54 struct pipe_sampler_view *sampler_views[VL_COMPOSITOR_SAMPLERS];
55 struct {
56 struct vertex2f tl, br;
57 } src, dst;
60 struct vl_compositor
62 struct pipe_context *pipe;
64 struct pipe_framebuffer_state fb_state;
65 struct pipe_viewport_state viewport;
66 struct pipe_vertex_buffer vertex_buf;
67 struct pipe_resource *csc_matrix, *video_res[5];
68 struct pipe_sampler_view *video_sv[5];
69 struct pipe_surface *video_surf[5];
71 void *sampler_linear;
72 void *sampler_nearest;
73 void *sampler_repeat;
74 void *blend_clear, *blend_add;
75 void *rast;
76 void *dsa;
77 void *vertex_elems_state;
79 void *vs;
80 void *fs_video_buffer[4];
81 void *fs_weave[6];
82 void *fs_rgba;
84 struct {
85 void *rgb;
86 void *yuv;
87 } fs_palette;
89 union pipe_color_union clear_color;
90 struct vertex2f dirty_tl, dirty_br;
92 enum pipe_video_chroma_format chroma;
93 unsigned video_w, video_h;
94 unsigned used_layers:VL_COMPOSITOR_MAX_LAYERS;
95 struct vl_compositor_layer layers[VL_COMPOSITOR_MAX_LAYERS];
96 float original_sizes[8], csc[16];
99 /**
100 * initialize this compositor
102 bool
103 vl_compositor_init(struct vl_compositor *compositor, struct pipe_context *pipe);
106 * initialize this compositor for video
108 bool
109 vl_compositor_init_video(struct vl_compositor *compositor, struct pipe_context *pipe,
110 enum pipe_video_chroma_format chroma,
111 unsigned width, unsigned height);
114 * set yuv -> rgba conversion matrix
116 void
117 vl_compositor_set_csc_matrix(struct vl_compositor *compositor, const float mat[16]);
120 * reset dirty area, so it's cleared with the clear colour
122 void
123 vl_compositor_reset_dirty_area(struct vl_compositor *compositor);
126 * set the clear color
128 void
129 vl_compositor_set_clear_color(struct vl_compositor *compositor, union pipe_color_union *color);
132 * get the clear color
134 void
135 vl_compositor_get_clear_color(struct vl_compositor *compositor, union pipe_color_union *color);
138 * set overlay samplers
140 /*@{*/
143 * reset all currently set layers
145 void
146 vl_compositor_clear_layers(struct vl_compositor *compositor);
149 * set the blender used to render a layer
151 void
152 vl_compositor_set_layer_blend(struct vl_compositor *compositor,
153 unsigned layer, void *blend, bool is_clearing);
156 * set a video buffer as a layer to render
158 void
159 vl_compositor_set_buffer_layer(struct vl_compositor *c, unsigned layer,
160 enum pipe_video_picture_structure field,
161 struct pipe_video_buffer *buffer,
162 struct pipe_video_rect *src_rect,
163 struct pipe_video_rect *dst_rect,
164 unsigned past_count,
165 struct pipe_video_buffer **past,
166 unsigned future_count,
167 struct pipe_video_buffer **future);
170 * set a paletted sampler as a layer to render
172 void
173 vl_compositor_set_palette_layer(struct vl_compositor *compositor,
174 unsigned layer,
175 struct pipe_sampler_view *indexes,
176 struct pipe_sampler_view *palette,
177 struct pipe_video_rect *src_rect,
178 struct pipe_video_rect *dst_rect,
179 bool include_color_conversion);
182 * set a rgba sampler as a layer to render
184 void
185 vl_compositor_set_rgba_layer(struct vl_compositor *compositor,
186 unsigned layer,
187 struct pipe_sampler_view *rgba,
188 struct pipe_video_rect *src_rect,
189 struct pipe_video_rect *dst_rect);
191 /*@}*/
194 * render the layers to the frontbuffer
196 void
197 vl_compositor_render(struct vl_compositor *compositor,
198 struct pipe_surface *dst_surface,
199 struct pipe_video_rect *dst_area,
200 struct pipe_video_rect *dst_clip,
201 bool clear_dirty_area);
204 * destroy this compositor
206 void
207 vl_compositor_cleanup(struct vl_compositor *compositor);
209 #endif /* vl_compositor_h */