Merge commit 'origin/master' into gallium-0.2
[mesa.git] / src / gallium / auxiliary / draw / draw_vertex.h
1 /**************************************************************************
2 *
3 * Copyright 2007 Tungsten Graphics, Inc., Cedar Park, Texas.
4 * All Rights Reserved.
5 *
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:
13 *
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
17 *
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.
25 *
26 **************************************************************************/
27
28 /**
29 * Post-transform vertex format info. The vertex_info struct is used by
30 * the draw_vbuf code to emit hardware-specific vertex layouts into hw
31 * vertex buffers.
32 *
33 * Author:
34 * Brian Paul
35 */
36
37
38 #ifndef DRAW_VERTEX_H
39 #define DRAW_VERTEX_H
40
41
42 #include "pipe/p_state.h"
43
44
45 /**
46 * Vertex attribute emit modes
47 */
48 enum attrib_emit {
49 EMIT_OMIT, /**< don't emit the attribute */
50 EMIT_1F,
51 EMIT_1F_PSIZE, /**< insert constant point size */
52 EMIT_2F,
53 EMIT_3F,
54 EMIT_4F,
55 EMIT_4UB /**< XXX may need variations for RGBA vs BGRA, etc */
56 };
57
58
59 /**
60 * Attribute interpolation mode
61 */
62 enum interp_mode {
63 INTERP_NONE, /**< never interpolate vertex header info */
64 INTERP_POS, /**< special case for frag position */
65 INTERP_CONSTANT,
66 INTERP_LINEAR,
67 INTERP_PERSPECTIVE
68 };
69
70
71 /**
72 * Information about hardware/rasterization vertex layout.
73 */
74 struct vertex_info
75 {
76 uint num_attribs;
77 uint hwfmt[4]; /**< hardware format info for this format */
78 uint size; /**< total vertex size in dwords */
79
80 /* Keep this small and at the end of the struct to allow quick
81 * memcmp() comparisons.
82 */
83 struct {
84 ubyte interp_mode:4; /**< INTERP_x */
85 ubyte emit:4; /**< EMIT_x */
86 ubyte src_index; /**< map to post-xform attribs */
87 } attrib[PIPE_MAX_SHADER_INPUTS];
88 };
89
90 static INLINE int
91 draw_vinfo_size( const struct vertex_info *a )
92 {
93 return ((const char *)&a->attrib[a->num_attribs] -
94 (const char *)a);
95 }
96
97 static INLINE int
98 draw_vinfo_compare( const struct vertex_info *a,
99 const struct vertex_info *b )
100 {
101 unsigned sizea = draw_vinfo_size( a );
102 return memcmp( a, b, sizea );
103 }
104
105 static INLINE void
106 draw_vinfo_copy( struct vertex_info *dst,
107 const struct vertex_info *src )
108 {
109 unsigned size = draw_vinfo_size( src );
110 memcpy( dst, src, size );
111 }
112
113
114
115 /**
116 * Add another attribute to the given vertex_info object.
117 * \param src_index indicates which post-transformed vertex attrib slot
118 * corresponds to this attribute.
119 * \return slot in which the attribute was added
120 */
121 static INLINE uint
122 draw_emit_vertex_attr(struct vertex_info *vinfo,
123 enum attrib_emit emit,
124 enum interp_mode interp, /* only used by softpipe??? */
125 uint src_index)
126 {
127 const uint n = vinfo->num_attribs;
128 assert(n < PIPE_MAX_SHADER_INPUTS);
129 vinfo->attrib[n].emit = emit;
130 vinfo->attrib[n].interp_mode = interp;
131 vinfo->attrib[n].src_index = src_index;
132 vinfo->num_attribs++;
133 return n;
134 }
135
136
137 extern void draw_compute_vertex_size(struct vertex_info *vinfo);
138
139 void draw_dump_emitted_vertex(const struct vertex_info *vinfo,
140 const uint8_t *data);
141
142
143 static INLINE unsigned draw_translate_vinfo_format(unsigned format )
144 {
145 switch (format) {
146 case EMIT_1F:
147 case EMIT_1F_PSIZE:
148 return PIPE_FORMAT_R32_FLOAT;
149 case EMIT_2F:
150 return PIPE_FORMAT_R32G32_FLOAT;
151 case EMIT_3F:
152 return PIPE_FORMAT_R32G32B32_FLOAT;
153 case EMIT_4F:
154 return PIPE_FORMAT_R32G32B32A32_FLOAT;
155 case EMIT_4UB:
156 return PIPE_FORMAT_R8G8B8A8_UNORM;
157 default:
158 return PIPE_FORMAT_NONE;
159 }
160 }
161
162
163 #endif /* DRAW_VERTEX_H */