Lines Matching refs:spec
56 * Map a function by its spec. The function will be added to glapi,
59 * \param spec a '\0'-separated string array specifying a function.
68 map_function_spec(const char *spec)
74 if (!spec)
77 signature = spec;
78 spec += strlen(spec) + 1;
80 /* spec is terminated by an empty string */
81 while (*spec) {
82 names[num_names] = spec;
86 spec += strlen(spec) + 1;
116 const char *spec;
120 spec = _mesa_function_pool + MESA_remap_table_functions[i].pool_index;
122 offset = map_function_spec(spec);
126 const char *name = spec + strlen(spec) + 1;