1 /**************************************************************************
3 * Copyright 2010, VMware, inc.
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
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 VMWARE 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 **************************************************************************/
30 static boolean
TAG(do_cliptest
)( struct pt_post_vs
*pvs
,
31 struct draw_vertex_info
*info
)
33 struct vertex_header
*out
= info
->verts
;
34 const float *scale
= pvs
->draw
->viewport
.scale
;
35 const float *trans
= pvs
->draw
->viewport
.translate
;
36 /* const */ float (*plane
)[4] = pvs
->draw
->plane
;
37 const unsigned pos
= draw_current_shader_position_output(pvs
->draw
);
38 const unsigned ef
= pvs
->draw
->vs
.edgeflag_output
;
39 const unsigned nr
= pvs
->draw
->nr_planes
;
40 const unsigned flags
= (FLAGS
);
41 unsigned need_pipeline
= 0;
44 for (j
= 0; j
< info
->count
; j
++) {
45 float *position
= out
->data
[pos
];
48 initialize_vertex_header(out
);
50 if (flags
& (DO_CLIP_XY
| DO_CLIP_FULL_Z
| DO_CLIP_HALF_Z
| DO_CLIP_USER
)) {
51 out
->clip
[0] = position
[0];
52 out
->clip
[1] = position
[1];
53 out
->clip
[2] = position
[2];
54 out
->clip
[3] = position
[3];
56 /* Do the hardwired planes first:
58 if (flags
& DO_CLIP_XY
) {
59 if (-position
[0] + position
[3] < 0) mask
|= (1<<0);
60 if ( position
[0] + position
[3] < 0) mask
|= (1<<1);
61 if (-position
[1] + position
[3] < 0) mask
|= (1<<2);
62 if ( position
[1] + position
[3] < 0) mask
|= (1<<3);
65 /* Clip Z planes according to full cube, half cube or none.
67 if (flags
& DO_CLIP_FULL_Z
) {
68 if ( position
[2] + position
[3] < 0) mask
|= (1<<4);
69 if (-position
[2] + position
[3] < 0) mask
|= (1<<5);
71 else if (flags
& DO_CLIP_HALF_Z
) {
72 if ( position
[2] < 0) mask
|= (1<<4);
73 if (-position
[2] + position
[3] < 0) mask
|= (1<<5);
76 if (flags
& DO_CLIP_USER
) {
78 for (i
= 6; i
< nr
; i
++) {
79 if (dot4(position
, plane
[i
]) < 0)
85 need_pipeline
|= out
->clipmask
;
88 if ((flags
& DO_VIEWPORT
) && mask
== 0)
91 float w
= 1.0f
/ position
[3];
93 /* Viewport mapping */
94 position
[0] = position
[0] * w
* scale
[0] + trans
[0];
95 position
[1] = position
[1] * w
* scale
[1] + trans
[1];
96 position
[2] = position
[2] * w
* scale
[2] + trans
[2];
100 if ((flags
& DO_EDGEFLAG
) && ef
) {
101 const float *edgeflag
= out
->data
[ef
];
102 out
->edgeflag
= !(edgeflag
[0] != 1.0f
);
103 need_pipeline
|= !out
->edgeflag
;
106 out
= (struct vertex_header
*)( (char *)out
+ info
->stride
);
109 return need_pipeline
!= 0;