bd9754487737f589416da6ab96c9554d38615a50
[mesa.git] / src / gallium / auxiliary / tgsi / tgsi_strings.c
1 /**************************************************************************
2 *
3 * Copyright 2007-2008 VMware, Inc.
4 * Copyright 2012 VMware, Inc.
5 * All Rights Reserved.
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the
9 * "Software"), to deal in the Software without restriction, including
10 * without limitation the rights to use, copy, modify, merge, publish,
11 * distribute, sub license, and/or sell copies of the Software, and to
12 * permit persons to whom the Software is furnished to do so, subject to
13 * the following conditions:
14 *
15 * The above copyright notice and this permission notice (including the
16 * next paragraph) shall be included in all copies or substantial portions
17 * of the Software.
18 *
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
20 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
21 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
22 * IN NO EVENT SHALL THE AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR
23 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
24 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
25 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26 *
27 **************************************************************************/
28
29
30 #include "pipe/p_compiler.h"
31 #include "util/u_memory.h"
32 #include "tgsi_strings.h"
33
34
35 const char *tgsi_processor_type_names[4] =
36 {
37 "FRAG",
38 "VERT",
39 "GEOM",
40 "COMP"
41 };
42
43 static const char *tgsi_file_names[] =
44 {
45 "NULL",
46 "CONST",
47 "IN",
48 "OUT",
49 "TEMP",
50 "SAMP",
51 "ADDR",
52 "IMM",
53 "PRED",
54 "SV",
55 "RES",
56 "SVIEW"
57 };
58
59 const char *tgsi_semantic_names[TGSI_SEMANTIC_COUNT] =
60 {
61 "POSITION",
62 "COLOR",
63 "BCOLOR",
64 "FOG",
65 "PSIZE",
66 "GENERIC",
67 "NORMAL",
68 "FACE",
69 "EDGEFLAG",
70 "PRIM_ID",
71 "INSTANCEID",
72 "VERTEXID",
73 "STENCIL",
74 "CLIPDIST",
75 "CLIPVERTEX",
76 "GRID_SIZE",
77 "BLOCK_ID",
78 "BLOCK_SIZE",
79 "THREAD_ID",
80 "TEXCOORD",
81 "PCOORD",
82 "VIEWPORT_INDEX",
83 "LAYER",
84 "CULLDIST",
85 "SAMPLEID",
86 "SAMPLEPOS",
87 "SAMPLEMASK",
88 "INVOCATIONID",
89 "VERTEXID_NOBASE",
90 "BASEVERTEX",
91 };
92
93 const char *tgsi_texture_names[TGSI_TEXTURE_COUNT] =
94 {
95 "BUFFER",
96 "1D",
97 "2D",
98 "3D",
99 "CUBE",
100 "RECT",
101 "SHADOW1D",
102 "SHADOW2D",
103 "SHADOWRECT",
104 "1D_ARRAY",
105 "2D_ARRAY",
106 "SHADOW1D_ARRAY",
107 "SHADOW2D_ARRAY",
108 "SHADOWCUBE",
109 "2D_MSAA",
110 "2D_ARRAY_MSAA",
111 "CUBEARRAY",
112 "SHADOWCUBEARRAY",
113 "UNKNOWN",
114 };
115
116 const char *tgsi_property_names[TGSI_PROPERTY_COUNT] =
117 {
118 "GS_INPUT_PRIMITIVE",
119 "GS_OUTPUT_PRIMITIVE",
120 "GS_MAX_OUTPUT_VERTICES",
121 "FS_COORD_ORIGIN",
122 "FS_COORD_PIXEL_CENTER",
123 "FS_COLOR0_WRITES_ALL_CBUFS",
124 "FS_DEPTH_LAYOUT",
125 "VS_PROHIBIT_UCPS",
126 "GS_INVOCATIONS",
127 "VS_WINDOW_SPACE_POSITION"
128 };
129
130 const char *tgsi_return_type_names[TGSI_RETURN_TYPE_COUNT] =
131 {
132 "UNORM",
133 "SNORM",
134 "SINT",
135 "UINT",
136 "FLOAT"
137 };
138
139 const char *tgsi_interpolate_names[TGSI_INTERPOLATE_COUNT] =
140 {
141 "CONSTANT",
142 "LINEAR",
143 "PERSPECTIVE",
144 "COLOR"
145 };
146
147 const char *tgsi_interpolate_locations[TGSI_INTERPOLATE_LOC_COUNT] =
148 {
149 "CENTER",
150 "CENTROID",
151 "SAMPLE",
152 };
153
154 const char *tgsi_primitive_names[PIPE_PRIM_MAX] =
155 {
156 "POINTS",
157 "LINES",
158 "LINE_LOOP",
159 "LINE_STRIP",
160 "TRIANGLES",
161 "TRIANGLE_STRIP",
162 "TRIANGLE_FAN",
163 "QUADS",
164 "QUAD_STRIP",
165 "POLYGON",
166 "LINES_ADJACENCY",
167 "LINE_STRIP_ADJACENCY",
168 "TRIANGLES_ADJACENCY",
169 "TRIANGLE_STRIP_ADJACENCY"
170 };
171
172 const char *tgsi_fs_coord_origin_names[2] =
173 {
174 "UPPER_LEFT",
175 "LOWER_LEFT"
176 };
177
178 const char *tgsi_fs_coord_pixel_center_names[2] =
179 {
180 "HALF_INTEGER",
181 "INTEGER"
182 };
183
184 const char *tgsi_immediate_type_names[3] =
185 {
186 "FLT32",
187 "UINT32",
188 "INT32"
189 };
190
191
192 static INLINE void
193 tgsi_strings_check(void)
194 {
195 STATIC_ASSERT(Elements(tgsi_semantic_names) == TGSI_SEMANTIC_COUNT);
196 STATIC_ASSERT(Elements(tgsi_texture_names) == TGSI_TEXTURE_COUNT);
197 STATIC_ASSERT(Elements(tgsi_property_names) == TGSI_PROPERTY_COUNT);
198 STATIC_ASSERT(Elements(tgsi_primitive_names) == PIPE_PRIM_MAX);
199 STATIC_ASSERT(Elements(tgsi_interpolate_names) == TGSI_INTERPOLATE_COUNT);
200 STATIC_ASSERT(Elements(tgsi_return_type_names) == TGSI_RETURN_TYPE_COUNT);
201 (void) tgsi_processor_type_names;
202 (void) tgsi_return_type_names;
203 (void) tgsi_immediate_type_names;
204 (void) tgsi_fs_coord_origin_names;
205 (void) tgsi_fs_coord_pixel_center_names;
206 }
207
208
209 const char *
210 tgsi_file_name(unsigned file)
211 {
212 STATIC_ASSERT(Elements(tgsi_file_names) == TGSI_FILE_COUNT);
213 if (file < Elements(tgsi_file_names))
214 return tgsi_file_names[file];
215 else
216 return "invalid file";
217 }