2 * Copyright 2009 VMware, Inc.
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:
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
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.
25 #include "u_indices.h"
26 #include "u_indices_priv.h"
29 static void translate_ubyte_ushort( const void *in
,
33 const ubyte
*in_ub
= (const ubyte
*)in
;
34 ushort
*out_us
= (ushort
*)out
;
36 for (i
= 0; i
< nr
; i
++)
37 out_us
[i
] = (ushort
) in_ub
[i
];
40 static void translate_memcpy_ushort( const void *in
,
44 memcpy(out
, in
, nr
*sizeof(short));
47 static void translate_memcpy_uint( const void *in
,
51 memcpy(out
, in
, nr
*sizeof(int));
55 static void generate_linear_ushort( unsigned nr
,
58 ushort
*out_us
= (ushort
*)out
;
60 for (i
= 0; i
< nr
; i
++)
61 out_us
[i
] = (ushort
) i
;
64 static void generate_linear_uint( unsigned nr
,
67 unsigned *out_ui
= (unsigned *)out
;
69 for (i
= 0; i
< nr
; i
++)
75 * Given a primitive type and number of vertices, return the number of vertices
76 * needed to draw the primitive with fill mode = PIPE_POLYGON_MODE_LINE using
77 * separate lines (PIPE_PRIM_LINES).
79 static unsigned nr_lines( unsigned prim
,
83 case PIPE_PRIM_TRIANGLES
:
85 case PIPE_PRIM_TRIANGLE_STRIP
:
87 case PIPE_PRIM_TRIANGLE_FAN
:
91 case PIPE_PRIM_QUAD_STRIP
:
92 return (nr
- 2) / 2 * 8;
93 case PIPE_PRIM_POLYGON
:
94 return 2 * nr
; /* a line (two verts) for each polygon edge */
103 int u_unfilled_translator( unsigned prim
,
104 unsigned in_index_size
,
106 unsigned unfilled_mode
,
108 unsigned *out_index_size
,
110 u_translate_func
*out_translate
)
117 in_idx
= in_size_idx(in_index_size
);
118 *out_index_size
= (in_index_size
== 4) ? 4 : 2;
119 out_idx
= out_size_idx(*out_index_size
);
121 if (unfilled_mode
== PIPE_POLYGON_MODE_POINT
)
123 *out_prim
= PIPE_PRIM_POINTS
;
126 switch (in_index_size
)
129 *out_translate
= translate_ubyte_ushort
;
130 return U_TRANSLATE_NORMAL
;
132 *out_translate
= translate_memcpy_uint
;
133 return U_TRANSLATE_MEMCPY
;
135 *out_translate
= translate_memcpy_ushort
;
136 return U_TRANSLATE_MEMCPY
;
138 *out_translate
= translate_memcpy_uint
;
141 return U_TRANSLATE_ERROR
;
145 assert(unfilled_mode
== PIPE_POLYGON_MODE_LINE
);
146 *out_prim
= PIPE_PRIM_LINES
;
147 *out_translate
= translate_line
[in_idx
][out_idx
][prim
];
148 *out_nr
= nr_lines( prim
, nr
);
149 return U_TRANSLATE_NORMAL
;
155 int u_unfilled_generator( unsigned prim
,
158 unsigned unfilled_mode
,
160 unsigned *out_index_size
,
162 u_generate_func
*out_generate
)
168 *out_index_size
= ((start
+ nr
) > 0xfffe) ? 4 : 2;
169 out_idx
= out_size_idx(*out_index_size
);
171 if (unfilled_mode
== PIPE_POLYGON_MODE_POINT
) {
173 if (*out_index_size
== 4)
174 *out_generate
= generate_linear_uint
;
176 *out_generate
= generate_linear_ushort
;
178 *out_prim
= PIPE_PRIM_POINTS
;
180 return U_GENERATE_LINEAR
;
183 assert(unfilled_mode
== PIPE_POLYGON_MODE_LINE
);
184 *out_prim
= PIPE_PRIM_LINES
;
185 *out_generate
= generate_line
[out_idx
][prim
];
186 *out_nr
= nr_lines( prim
, nr
);
188 return U_GENERATE_REUSABLE
;