Lines Matching defs:key
179 uint64_t key;
181 key = This->next_key;
182 if (key == This->last_key) {
188 cso = nine_shader_variant_get(&This->variant, const_ranges, const_used_size, key);
198 info.sampler_mask_shadow = key & 0xffff;
202 info.sampler_ps1xtypes = (key >> 4) & 0xff;
203 info.projected = (key >> 12) & 0xff;
205 info.sampler_ps1xtypes = (key >> 6) & 0xfff;
214 info.force_color_in_centroid = (key >> 22) & 1;
216 nine_shader_constant_combination_get(This->c_combinations, (key >> 24) & 0xff);
219 info.fetch4 = key >> 32 ;
226 nine_shader_variant_add(&This->variant, key, info.cso,
233 This->last_key = key;