1 /**************************************************************************
3 * Copyright 2009 VMware, Inc. All Rights Reserved.
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the
7 * "Software"), to deal in the Software without restriction, including
8 * without limitation the rights to use, copy, modify, merge, publish,
9 * distribute, sub license, and/or sell copies of the Software, and to
10 * permit persons to whom the Software is furnished to do so, subject to
11 * the following conditions:
13 * The above copyright notice and this permission notice (including the
14 * next paragraph) shall be included in all copies or substantial portions
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
18 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
20 * IN NO EVENT SHALL VMWARE AND/OR ITS SUPPLIERS BE LIABLE FOR
21 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
22 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
23 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 **************************************************************************/
27 #include "VG/openvg.h"
33 #include "vg_context.h"
34 #include "pipe/p_context.h"
35 #include "util/u_inlines.h"
37 #include "util/u_pack_color.h"
38 #include "util/u_draw_quad.h"
39 #include "util/u_memory.h"
41 #define DISABLE_1_1_MASKING 1
44 * Draw a screen-aligned quadrilateral.
45 * Coords are window coords with y=0=bottom. These coords will be transformed
46 * by the vertex shader and viewport transform.
49 draw_clear_quad(struct vg_context
*st
,
50 float x0
, float y0
, float x1
, float y1
, float z
,
51 const VGfloat color
[4])
53 struct pipe_context
*pipe
= st
->pipe
;
54 struct pipe_resource
*buf
;
58 st
->clear
.vertices
[0][0][0] = x0
;
59 st
->clear
.vertices
[0][0][1] = y0
;
61 st
->clear
.vertices
[1][0][0] = x1
;
62 st
->clear
.vertices
[1][0][1] = y0
;
64 st
->clear
.vertices
[2][0][0] = x1
;
65 st
->clear
.vertices
[2][0][1] = y1
;
67 st
->clear
.vertices
[3][0][0] = x0
;
68 st
->clear
.vertices
[3][0][1] = y1
;
70 /* same for all verts: */
71 for (i
= 0; i
< 4; i
++) {
72 st
->clear
.vertices
[i
][0][2] = z
;
73 st
->clear
.vertices
[i
][0][3] = 1.0;
74 st
->clear
.vertices
[i
][1][0] = color
[0];
75 st
->clear
.vertices
[i
][1][1] = color
[1];
76 st
->clear
.vertices
[i
][1][2] = color
[2];
77 st
->clear
.vertices
[i
][1][3] = color
[3];
81 /* put vertex data into vbuf */
82 buf
= pipe_user_buffer_create(pipe
->screen
,
84 sizeof(st
->clear
.vertices
),
85 PIPE_BIND_VERTEX_BUFFER
);
90 cso_set_vertex_elements(st
->cso_context
, 2, st
->velems
);
92 util_draw_vertex_buffer(pipe
, buf
, 0,
93 PIPE_PRIM_TRIANGLE_FAN
,
95 2); /* attribs/vert */
97 pipe_resource_reference(&buf
, NULL
);
102 * Do vgClear by drawing a quadrilateral.
105 clear_with_quad(struct vg_context
*st
, float x0
, float y0
,
106 float width
, float height
, const VGfloat clear_color
[4])
110 vg_validate_state(st
);
116 printf("%s %f,%f %f,%f\n", __FUNCTION__,
121 cso_save_blend(st
->cso_context
);
122 cso_save_rasterizer(st
->cso_context
);
123 cso_save_fragment_shader(st
->cso_context
);
124 cso_save_vertex_shader(st
->cso_context
);
126 /* blend state: RGBA masking */
128 struct pipe_blend_state blend
;
129 memset(&blend
, 0, sizeof(blend
));
130 blend
.rt
[0].rgb_src_factor
= PIPE_BLENDFACTOR_ONE
;
131 blend
.rt
[0].alpha_src_factor
= PIPE_BLENDFACTOR_ONE
;
132 blend
.rt
[0].rgb_dst_factor
= PIPE_BLENDFACTOR_ZERO
;
133 blend
.rt
[0].alpha_dst_factor
= PIPE_BLENDFACTOR_ZERO
;
134 blend
.rt
[0].colormask
= PIPE_MASK_RGBA
;
135 cso_set_blend(st
->cso_context
, &blend
);
138 cso_set_rasterizer(st
->cso_context
, &st
->clear
.raster
);
140 cso_set_fragment_shader_handle(st
->cso_context
, st
->clear
.fs
);
141 cso_set_vertex_shader_handle(st
->cso_context
, vg_clear_vs(st
));
143 /* draw quad matching scissor rect (XXX verify coord round-off) */
144 draw_clear_quad(st
, x0
, y0
, x1
, y1
, 0, clear_color
);
146 /* Restore pipe state */
147 cso_restore_blend(st
->cso_context
);
148 cso_restore_rasterizer(st
->cso_context
);
149 cso_restore_fragment_shader(st
->cso_context
);
150 cso_restore_vertex_shader(st
->cso_context
);
154 void vegaMask(VGHandle mask
, VGMaskOperation operation
,
156 VGint width
, VGint height
)
158 struct vg_context
*ctx
= vg_current_context();
160 if (width
<=0 || height
<= 0) {
161 vg_set_error(ctx
, VG_ILLEGAL_ARGUMENT_ERROR
);
165 if (operation
< VG_CLEAR_MASK
|| operation
> VG_SUBTRACT_MASK
) {
166 vg_set_error(ctx
, VG_ILLEGAL_ARGUMENT_ERROR
);
171 vg_validate_state(ctx
);
173 if (operation
== VG_CLEAR_MASK
) {
174 mask_fill(x
, y
, width
, height
, 0.f
);
175 } else if (operation
== VG_FILL_MASK
) {
176 mask_fill(x
, y
, width
, height
, 1.f
);
177 } else if (vg_object_is_valid((void*)mask
, VG_OBJECT_IMAGE
)) {
178 struct vg_image
*image
= (struct vg_image
*)mask
;
179 mask_using_image(image
, operation
, x
, y
, width
, height
);
180 } else if (vg_object_is_valid((void*)mask
, VG_OBJECT_MASK
)) {
181 #if DISABLE_1_1_MASKING
184 struct vg_mask_layer
*layer
= (struct vg_mask_layer
*)mask
;
185 mask_using_layer(layer
, operation
, x
, y
, width
, height
);
188 vg_set_error(ctx
, VG_BAD_HANDLE_ERROR
);
192 void vegaClear(VGint x
, VGint y
,
193 VGint width
, VGint height
)
195 struct vg_context
*ctx
= vg_current_context();
196 struct pipe_framebuffer_state
*fb
;
198 if (width
<= 0 || height
<= 0) {
199 vg_set_error(ctx
, VG_ILLEGAL_ARGUMENT_ERROR
);
203 vg_validate_state(ctx
);
205 debug_printf("Clear [%d, %d, %d, %d] with [%f, %f, %f, %f]\n",
207 ctx
->state
.vg
.clear_color
[0],
208 ctx
->state
.vg
.clear_color
[1],
209 ctx
->state
.vg
.clear_color
[2],
210 ctx
->state
.vg
.clear_color
[3]);
213 fb
= &ctx
->state
.g3d
.fb
;
214 /* check for a whole surface clear */
215 if (!ctx
->state
.vg
.scissoring
&&
216 (x
== 0 && y
== 0 && width
== fb
->width
&& height
== fb
->height
)) {
217 ctx
->pipe
->clear(ctx
->pipe
, PIPE_CLEAR_COLOR
| PIPE_CLEAR_DEPTHSTENCIL
,
218 ctx
->state
.vg
.clear_color
, 1., 0);
220 clear_with_quad(ctx
, x
, y
, width
, height
, ctx
->state
.vg
.clear_color
);
225 #ifdef OPENVG_VERSION_1_1
228 void vegaRenderToMask(VGPath path
,
229 VGbitfield paintModes
,
230 VGMaskOperation operation
)
232 struct vg_context
*ctx
= vg_current_context();
234 if (path
== VG_INVALID_HANDLE
) {
235 vg_set_error(ctx
, VG_BAD_HANDLE_ERROR
);
238 if (!paintModes
|| (paintModes
&(~(VG_STROKE_PATH
|VG_FILL_PATH
)))) {
239 vg_set_error(ctx
, VG_ILLEGAL_ARGUMENT_ERROR
);
242 if (operation
< VG_CLEAR_MASK
||
243 operation
> VG_SUBTRACT_MASK
) {
244 vg_set_error(ctx
, VG_ILLEGAL_ARGUMENT_ERROR
);
247 if (!vg_object_is_valid((void*)path
, VG_OBJECT_PATH
)) {
248 vg_set_error(ctx
, VG_BAD_HANDLE_ERROR
);
252 #if DISABLE_1_1_MASKING
256 vg_validate_state(ctx
);
258 mask_render_to((struct path
*)path
, paintModes
, operation
);
261 VGMaskLayer
vegaCreateMaskLayer(VGint width
, VGint height
)
263 struct vg_context
*ctx
= vg_current_context();
265 if (width
<= 0 || height
<= 0 ||
266 width
> vgGeti(VG_MAX_IMAGE_WIDTH
) ||
267 height
> vgGeti(VG_MAX_IMAGE_HEIGHT
)) {
268 vg_set_error(ctx
, VG_ILLEGAL_ARGUMENT_ERROR
);
269 return VG_INVALID_HANDLE
;
272 return (VGMaskLayer
)mask_layer_create(width
, height
);
275 void vegaDestroyMaskLayer(VGMaskLayer maskLayer
)
277 struct vg_mask_layer
*mask
= 0;
278 struct vg_context
*ctx
= vg_current_context();
280 if (maskLayer
== VG_INVALID_HANDLE
) {
281 vg_set_error(ctx
, VG_BAD_HANDLE_ERROR
);
284 if (!vg_object_is_valid((void*)maskLayer
, VG_OBJECT_MASK
)) {
285 vg_set_error(ctx
, VG_BAD_HANDLE_ERROR
);
289 mask
= (struct vg_mask_layer
*)maskLayer
;
290 mask_layer_destroy(mask
);
293 void vegaFillMaskLayer(VGMaskLayer maskLayer
,
295 VGint width
, VGint height
,
298 struct vg_mask_layer
*mask
= 0;
299 struct vg_context
*ctx
= vg_current_context();
301 if (maskLayer
== VG_INVALID_HANDLE
) {
302 vg_set_error(ctx
, VG_BAD_HANDLE_ERROR
);
306 if (value
< 0 || value
> 1) {
307 vg_set_error(ctx
, VG_ILLEGAL_ARGUMENT_ERROR
);
311 if (width
<= 0 || height
<= 0) {
312 vg_set_error(ctx
, VG_ILLEGAL_ARGUMENT_ERROR
);
315 if (x
< 0 || y
< 0 || (x
+ width
) < 0 || (y
+ height
) < 0) {
316 vg_set_error(ctx
, VG_ILLEGAL_ARGUMENT_ERROR
);
320 if (!vg_object_is_valid((void*)maskLayer
, VG_OBJECT_MASK
)) {
321 vg_set_error(ctx
, VG_BAD_HANDLE_ERROR
);
325 mask
= (struct vg_mask_layer
*)maskLayer
;
327 if (x
+ width
> mask_layer_width(mask
) ||
328 y
+ height
> mask_layer_height(mask
)) {
329 vg_set_error(ctx
, VG_ILLEGAL_ARGUMENT_ERROR
);
333 #if DISABLE_1_1_MASKING
336 mask_layer_fill(mask
, x
, y
, width
, height
, value
);
339 void vegaCopyMask(VGMaskLayer maskLayer
,
342 VGint width
, VGint height
)
344 struct vg_context
*ctx
= vg_current_context();
345 struct vg_mask_layer
*mask
= 0;
347 if (maskLayer
== VG_INVALID_HANDLE
) {
348 vg_set_error(ctx
, VG_BAD_HANDLE_ERROR
);
351 if (width
<= 0 || height
<= 0) {
352 vg_set_error(ctx
, VG_ILLEGAL_ARGUMENT_ERROR
);
355 if (!vg_object_is_valid((void*)maskLayer
, VG_OBJECT_MASK
)) {
356 vg_set_error(ctx
, VG_BAD_HANDLE_ERROR
);
360 #if DISABLE_1_1_MASKING
364 mask
= (struct vg_mask_layer
*)maskLayer
;
365 mask_copy(mask
, sx
, sy
, dx
, dy
, width
, height
);