1 /**************************************************************************
3 * Copyright 2007 Tungsten Graphics, Inc., Cedar Park, Texas.
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 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 **************************************************************************/
29 * \brief Drawing stage for handling glPolygonMode(line/point).
30 * Convert triangles to points or lines as needed.
33 /* Authors: Keith Whitwell <keith@tungstengraphics.com>
36 #include "util/u_memory.h"
37 #include "pipe/p_defines.h"
38 #include "draw_private.h"
39 #include "draw_pipe.h"
42 struct unfilled_stage
{
43 struct draw_stage stage
;
45 /** [0] = front face, [1] = back face.
46 * legal values: PIPE_POLYGON_MODE_FILL, PIPE_POLYGON_MODE_LINE,
47 * and PIPE_POLYGON_MODE_POINT,
53 static INLINE
struct unfilled_stage
*unfilled_stage( struct draw_stage
*stage
)
55 return (struct unfilled_stage
*)stage
;
60 static void point( struct draw_stage
*stage
,
61 struct vertex_header
*v0
)
63 struct prim_header tmp
;
65 stage
->next
->point( stage
->next
, &tmp
);
68 static void line( struct draw_stage
*stage
,
69 struct vertex_header
*v0
,
70 struct vertex_header
*v1
)
72 struct prim_header tmp
;
75 stage
->next
->line( stage
->next
, &tmp
);
79 static void points( struct draw_stage
*stage
,
80 struct prim_header
*header
)
82 struct vertex_header
*v0
= header
->v
[0];
83 struct vertex_header
*v1
= header
->v
[1];
84 struct vertex_header
*v2
= header
->v
[2];
86 if ((header
->flags
& DRAW_PIPE_EDGE_FLAG_0
) && v0
->edgeflag
) point( stage
, v0
);
87 if ((header
->flags
& DRAW_PIPE_EDGE_FLAG_1
) && v1
->edgeflag
) point( stage
, v1
);
88 if ((header
->flags
& DRAW_PIPE_EDGE_FLAG_2
) && v2
->edgeflag
) point( stage
, v2
);
92 static void lines( struct draw_stage
*stage
,
93 struct prim_header
*header
)
95 struct vertex_header
*v0
= header
->v
[0];
96 struct vertex_header
*v1
= header
->v
[1];
97 struct vertex_header
*v2
= header
->v
[2];
99 if (header
->flags
& DRAW_PIPE_RESET_STIPPLE
)
100 stage
->next
->reset_stipple_counter( stage
->next
);
102 if ((header
->flags
& DRAW_PIPE_EDGE_FLAG_2
) && v2
->edgeflag
) line( stage
, v2
, v0
);
103 if ((header
->flags
& DRAW_PIPE_EDGE_FLAG_0
) && v0
->edgeflag
) line( stage
, v0
, v1
);
104 if ((header
->flags
& DRAW_PIPE_EDGE_FLAG_1
) && v1
->edgeflag
) line( stage
, v1
, v2
);
110 print_header_flags(unsigned flags
)
112 debug_printf("header->flags = ");
113 if (flags
& DRAW_PIPE_RESET_STIPPLE
)
114 debug_printf("RESET_STIPPLE ");
115 if (flags
& DRAW_PIPE_EDGE_FLAG_0
)
116 debug_printf("EDGE_FLAG_0 ");
117 if (flags
& DRAW_PIPE_EDGE_FLAG_1
)
118 debug_printf("EDGE_FLAG_1 ");
119 if (flags
& DRAW_PIPE_EDGE_FLAG_2
)
120 debug_printf("EDGE_FLAG_2 ");
127 * Note edgeflags in the vertex struct is not sufficient as we will
128 * need to manipulate them when decomposing primitives.
130 * We currently keep the vertex edgeflag and primitive edgeflag mask
131 * separate until the last possible moment.
133 static void unfilled_tri( struct draw_stage
*stage
,
134 struct prim_header
*header
)
136 struct unfilled_stage
*unfilled
= unfilled_stage(stage
);
137 unsigned cw
= header
->det
>= 0.0;
138 unsigned mode
= unfilled
->mode
[cw
];
141 print_header_flags(header
->flags
);
144 case PIPE_POLYGON_MODE_FILL
:
145 stage
->next
->tri( stage
->next
, header
);
147 case PIPE_POLYGON_MODE_LINE
:
148 lines( stage
, header
);
150 case PIPE_POLYGON_MODE_POINT
:
151 points( stage
, header
);
159 static void unfilled_first_tri( struct draw_stage
*stage
,
160 struct prim_header
*header
)
162 struct unfilled_stage
*unfilled
= unfilled_stage(stage
);
163 const struct pipe_rasterizer_state
*rast
= stage
->draw
->rasterizer
;
165 unfilled
->mode
[0] = rast
->front_ccw
? rast
->fill_front
: rast
->fill_back
;
166 unfilled
->mode
[1] = rast
->front_ccw
? rast
->fill_back
: rast
->fill_front
;
168 stage
->tri
= unfilled_tri
;
169 stage
->tri( stage
, header
);
174 static void unfilled_flush( struct draw_stage
*stage
,
177 stage
->next
->flush( stage
->next
, flags
);
179 stage
->tri
= unfilled_first_tri
;
183 static void unfilled_reset_stipple_counter( struct draw_stage
*stage
)
185 stage
->next
->reset_stipple_counter( stage
->next
);
189 static void unfilled_destroy( struct draw_stage
*stage
)
191 draw_free_temp_verts( stage
);
197 * Create unfilled triangle stage.
199 struct draw_stage
*draw_unfilled_stage( struct draw_context
*draw
)
201 struct unfilled_stage
*unfilled
= CALLOC_STRUCT(unfilled_stage
);
202 if (unfilled
== NULL
)
205 unfilled
->stage
.draw
= draw
;
206 unfilled
->stage
.name
= "unfilled";
207 unfilled
->stage
.next
= NULL
;
208 unfilled
->stage
.tmp
= NULL
;
209 unfilled
->stage
.point
= draw_pipe_passthrough_point
;
210 unfilled
->stage
.line
= draw_pipe_passthrough_line
;
211 unfilled
->stage
.tri
= unfilled_first_tri
;
212 unfilled
->stage
.flush
= unfilled_flush
;
213 unfilled
->stage
.reset_stipple_counter
= unfilled_reset_stipple_counter
;
214 unfilled
->stage
.destroy
= unfilled_destroy
;
216 if (!draw_alloc_temp_verts( &unfilled
->stage
, 0 ))
219 return &unfilled
->stage
;
223 unfilled
->stage
.destroy( &unfilled
->stage
);