1 /**************************************************************************
3 * Copyright 2007-2008 VMware, Inc.
4 * Copyright 2012 VMware, Inc.
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:
15 * The above copyright notice and this permission notice (including the
16 * next paragraph) shall be included in all copies or substantial portions
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.
27 **************************************************************************/
30 #include "pipe/p_compiler.h"
31 #include "util/u_memory.h"
32 #include "tgsi_strings.h"
35 const char *tgsi_processor_type_names
[6] =
45 static const char *tgsi_file_names
[] =
61 const char *tgsi_semantic_names
[TGSI_SEMANTIC_COUNT
] =
101 const char *tgsi_texture_names
[TGSI_TEXTURE_COUNT
] =
124 const char *tgsi_property_names
[TGSI_PROPERTY_COUNT
] =
126 "GS_INPUT_PRIMITIVE",
127 "GS_OUTPUT_PRIMITIVE",
128 "GS_MAX_OUTPUT_VERTICES",
130 "FS_COORD_PIXEL_CENTER",
131 "FS_COLOR0_WRITES_ALL_CBUFS",
135 "VS_WINDOW_SPACE_POSITION",
139 "TES_VERTEX_ORDER_CW",
141 "NUM_CLIPDIST_ENABLED",
142 "NUM_CULLDIST_ENABLED",
145 const char *tgsi_return_type_names
[TGSI_RETURN_TYPE_COUNT
] =
154 const char *tgsi_interpolate_names
[TGSI_INTERPOLATE_COUNT
] =
162 const char *tgsi_interpolate_locations
[TGSI_INTERPOLATE_LOC_COUNT
] =
169 const char *tgsi_primitive_names
[PIPE_PRIM_MAX
] =
182 "LINE_STRIP_ADJACENCY",
183 "TRIANGLES_ADJACENCY",
184 "TRIANGLE_STRIP_ADJACENCY",
188 const char *tgsi_fs_coord_origin_names
[2] =
194 const char *tgsi_fs_coord_pixel_center_names
[2] =
200 const char *tgsi_immediate_type_names
[4] =
210 tgsi_strings_check(void)
212 STATIC_ASSERT(Elements(tgsi_semantic_names
) == TGSI_SEMANTIC_COUNT
);
213 STATIC_ASSERT(Elements(tgsi_texture_names
) == TGSI_TEXTURE_COUNT
);
214 STATIC_ASSERT(Elements(tgsi_property_names
) == TGSI_PROPERTY_COUNT
);
215 STATIC_ASSERT(Elements(tgsi_primitive_names
) == PIPE_PRIM_MAX
);
216 STATIC_ASSERT(Elements(tgsi_interpolate_names
) == TGSI_INTERPOLATE_COUNT
);
217 STATIC_ASSERT(Elements(tgsi_return_type_names
) == TGSI_RETURN_TYPE_COUNT
);
218 (void) tgsi_processor_type_names
;
219 (void) tgsi_return_type_names
;
220 (void) tgsi_immediate_type_names
;
221 (void) tgsi_fs_coord_origin_names
;
222 (void) tgsi_fs_coord_pixel_center_names
;
227 tgsi_file_name(unsigned file
)
229 STATIC_ASSERT(Elements(tgsi_file_names
) == TGSI_FILE_COUNT
);
230 if (file
< Elements(tgsi_file_names
))
231 return tgsi_file_names
[file
];
233 return "invalid file";