tgsi: replace tgsi_file_names tgsi_file_names[] with tgsi_file_name() function
[mesa.git] / src / gallium / auxiliary / tgsi / tgsi_strings.c
1 /**************************************************************************
2 *
3 * Copyright 2007-2008 Tungsten Graphics, Inc., Cedar Park, Texas.
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 };
85
86 const char *tgsi_texture_names[TGSI_TEXTURE_COUNT] =
87 {
88 "BUFFER",
89 "1D",
90 "2D",
91 "3D",
92 "CUBE",
93 "RECT",
94 "SHADOW1D",
95 "SHADOW2D",
96 "SHADOWRECT",
97 "1D_ARRAY",
98 "2D_ARRAY",
99 "SHADOW1D_ARRAY",
100 "SHADOW2D_ARRAY",
101 "SHADOWCUBE",
102 "2D_MSAA",
103 "2D_ARRAY_MSAA",
104 "CUBEARRAY",
105 "SHADOWCUBEARRAY",
106 "UNKNOWN",
107 };
108
109 const char *tgsi_property_names[TGSI_PROPERTY_COUNT] =
110 {
111 "GS_INPUT_PRIMITIVE",
112 "GS_OUTPUT_PRIMITIVE",
113 "GS_MAX_OUTPUT_VERTICES",
114 "FS_COORD_ORIGIN",
115 "FS_COORD_PIXEL_CENTER",
116 "FS_COLOR0_WRITES_ALL_CBUFS",
117 "FS_DEPTH_LAYOUT",
118 "VS_PROHIBIT_UCPS"
119 };
120
121 const char *tgsi_type_names[5] =
122 {
123 "UNORM",
124 "SNORM",
125 "SINT",
126 "UINT",
127 "FLOAT"
128 };
129
130 const char *tgsi_interpolate_names[TGSI_INTERPOLATE_COUNT] =
131 {
132 "CONSTANT",
133 "LINEAR",
134 "PERSPECTIVE",
135 "COLOR"
136 };
137
138 const char *tgsi_primitive_names[PIPE_PRIM_MAX] =
139 {
140 "POINTS",
141 "LINES",
142 "LINE_LOOP",
143 "LINE_STRIP",
144 "TRIANGLES",
145 "TRIANGLE_STRIP",
146 "TRIANGLE_FAN",
147 "QUADS",
148 "QUAD_STRIP",
149 "POLYGON",
150 "LINES_ADJACENCY",
151 "LINE_STRIP_ADJACENCY",
152 "TRIANGLES_ADJACENCY",
153 "TRIANGLE_STRIP_ADJACENCY"
154 };
155
156 const char *tgsi_fs_coord_origin_names[2] =
157 {
158 "UPPER_LEFT",
159 "LOWER_LEFT"
160 };
161
162 const char *tgsi_fs_coord_pixel_center_names[2] =
163 {
164 "HALF_INTEGER",
165 "INTEGER"
166 };
167
168 const char *tgsi_immediate_type_names[3] =
169 {
170 "FLT32",
171 "UINT32",
172 "INT32"
173 };
174
175
176 static INLINE void
177 tgsi_strings_check(void)
178 {
179 STATIC_ASSERT(Elements(tgsi_semantic_names) == TGSI_SEMANTIC_COUNT);
180 STATIC_ASSERT(Elements(tgsi_texture_names) == TGSI_TEXTURE_COUNT);
181 STATIC_ASSERT(Elements(tgsi_property_names) == TGSI_PROPERTY_COUNT);
182 STATIC_ASSERT(Elements(tgsi_primitive_names) == PIPE_PRIM_MAX);
183 STATIC_ASSERT(Elements(tgsi_interpolate_names) == TGSI_INTERPOLATE_COUNT);
184 (void) tgsi_processor_type_names;
185 (void) tgsi_type_names;
186 (void) tgsi_immediate_type_names;
187 (void) tgsi_fs_coord_origin_names;
188 (void) tgsi_fs_coord_pixel_center_names;
189 }
190
191
192 const char *
193 tgsi_file_name(unsigned file)
194 {
195 STATIC_ASSERT(Elements(tgsi_file_names) == TGSI_FILE_COUNT);
196 if (file < Elements(tgsi_file_names))
197 return tgsi_file_names[file];
198 else
199 return "invalid file";
200 }