util/indices: formatting, whitespace fixes in u_unfilled_indices.c
[mesa.git] / src / gallium / auxiliary / indices / u_unfilled_indices.c
1 /*
2 * Copyright 2009 VMware, Inc.
3 * All Rights Reserved.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * on the rights to use, copy, modify, merge, publish, distribute, sub
9 * license, and/or sell copies of the Software, and to permit persons to whom
10 * the Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice (including the next
13 * paragraph) shall be included in all copies or substantial portions of the
14 * Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
19 * VMWARE AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
20 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
21 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
22 * USE OR OTHER DEALINGS IN THE SOFTWARE.
23 */
24
25 #include "u_indices.h"
26 #include "u_indices_priv.h"
27
28
29 static void translate_ubyte_ushort( const void *in,
30 unsigned start,
31 unsigned in_nr,
32 unsigned out_nr,
33 unsigned restart_index,
34 void *out )
35 {
36 const ubyte *in_ub = (const ubyte *)in;
37 ushort *out_us = (ushort *)out;
38 unsigned i;
39 for (i = 0; i < out_nr; i++)
40 out_us[i] = (ushort) in_ub[i+start];
41 }
42
43 static void translate_memcpy_ushort( const void *in,
44 unsigned start,
45 unsigned in_nr,
46 unsigned out_nr,
47 unsigned restart_index,
48 void *out )
49 {
50 memcpy(out, &((short *)in)[start], out_nr*sizeof(short));
51 }
52
53 static void translate_memcpy_uint( const void *in,
54 unsigned start,
55 unsigned in_nr,
56 unsigned out_nr,
57 unsigned restart_index,
58 void *out )
59 {
60 memcpy(out, &((int *)in)[start], out_nr*sizeof(int));
61 }
62
63
64 static void generate_linear_ushort( unsigned start,
65 unsigned nr,
66 void *out )
67 {
68 ushort *out_us = (ushort *)out;
69 unsigned i;
70 for (i = 0; i < nr; i++)
71 out_us[i] = (ushort)(i + start);
72 }
73
74 static void generate_linear_uint( unsigned start,
75 unsigned nr,
76 void *out )
77 {
78 unsigned *out_ui = (unsigned *)out;
79 unsigned i;
80 for (i = 0; i < nr; i++)
81 out_ui[i] = i + start;
82 }
83
84
85 /**
86 * Given a primitive type and number of vertices, return the number of vertices
87 * needed to draw the primitive with fill mode = PIPE_POLYGON_MODE_LINE using
88 * separate lines (PIPE_PRIM_LINES).
89 */
90 static unsigned
91 nr_lines(unsigned prim, unsigned nr)
92 {
93 switch (prim) {
94 case PIPE_PRIM_TRIANGLES:
95 return (nr / 3) * 6;
96 case PIPE_PRIM_TRIANGLE_STRIP:
97 return (nr - 2) * 6;
98 case PIPE_PRIM_TRIANGLE_FAN:
99 return (nr - 2) * 6;
100 case PIPE_PRIM_QUADS:
101 return (nr / 4) * 8;
102 case PIPE_PRIM_QUAD_STRIP:
103 return (nr - 2) / 2 * 8;
104 case PIPE_PRIM_POLYGON:
105 return 2 * nr; /* a line (two verts) for each polygon edge */
106 default:
107 assert(0);
108 return 0;
109 }
110 }
111
112
113 enum indices_mode
114 u_unfilled_translator(unsigned prim,
115 unsigned in_index_size,
116 unsigned nr,
117 unsigned unfilled_mode,
118 unsigned *out_prim,
119 unsigned *out_index_size,
120 unsigned *out_nr,
121 u_translate_func *out_translate)
122 {
123 unsigned in_idx;
124 unsigned out_idx;
125
126 u_unfilled_init();
127
128 in_idx = in_size_idx(in_index_size);
129 *out_index_size = (in_index_size == 4) ? 4 : 2;
130 out_idx = out_size_idx(*out_index_size);
131
132 if (unfilled_mode == PIPE_POLYGON_MODE_POINT) {
133 *out_prim = PIPE_PRIM_POINTS;
134 *out_nr = nr;
135
136 switch (in_index_size) {
137 case 1:
138 *out_translate = translate_ubyte_ushort;
139 return U_TRANSLATE_NORMAL;
140 case 2:
141 *out_translate = translate_memcpy_uint;
142 return U_TRANSLATE_MEMCPY;
143 case 4:
144 *out_translate = translate_memcpy_ushort;
145 return U_TRANSLATE_MEMCPY;
146 default:
147 *out_translate = translate_memcpy_uint;
148 *out_nr = 0;
149 assert(0);
150 return U_TRANSLATE_ERROR;
151 }
152 }
153 else {
154 assert(unfilled_mode == PIPE_POLYGON_MODE_LINE);
155 *out_prim = PIPE_PRIM_LINES;
156 *out_translate = translate_line[in_idx][out_idx][prim];
157 *out_nr = nr_lines( prim, nr );
158 return U_TRANSLATE_NORMAL;
159 }
160 }
161
162
163 /**
164 * Utility for converting unfilled polygons into points, lines, triangles.
165 * Few drivers have direct support for OpenGL's glPolygonMode.
166 * This function helps with converting triangles into points or lines
167 * when the front and back fill modes are the same. When there's
168 * different front/back fill modes, that can be handled with the
169 * 'draw' module.
170 */
171 enum indices_mode
172 u_unfilled_generator(unsigned prim,
173 unsigned start,
174 unsigned nr,
175 unsigned unfilled_mode,
176 unsigned *out_prim,
177 unsigned *out_index_size,
178 unsigned *out_nr,
179 u_generate_func *out_generate)
180 {
181 unsigned out_idx;
182
183 u_unfilled_init();
184
185 *out_index_size = ((start + nr) > 0xfffe) ? 4 : 2;
186 out_idx = out_size_idx(*out_index_size);
187
188 if (unfilled_mode == PIPE_POLYGON_MODE_POINT) {
189 if (*out_index_size == 4)
190 *out_generate = generate_linear_uint;
191 else
192 *out_generate = generate_linear_ushort;
193
194 *out_prim = PIPE_PRIM_POINTS;
195 *out_nr = nr;
196 return U_GENERATE_LINEAR;
197 }
198 else {
199 assert(unfilled_mode == PIPE_POLYGON_MODE_LINE);
200 *out_prim = PIPE_PRIM_LINES;
201 *out_generate = generate_line[out_idx][prim];
202 *out_nr = nr_lines( prim, nr );
203
204 return U_GENERATE_REUSABLE;
205 }
206 }