Lines Matching defs:info
51 * Use the shader info to generate a bitmask indicating which generic
56 svga_get_generic_inputs_mask(const struct tgsi_shader_info *info)
61 for (i = 0; i < info->num_inputs; i++) {
62 if (info->input_semantic_name[i] == TGSI_SEMANTIC_GENERIC) {
63 unsigned j = info->input_semantic_index[i];
74 * Scan shader info to return a bitmask of written outputs.
77 svga_get_generic_outputs_mask(const struct tgsi_shader_info *info)
82 for (i = 0; i < info->num_outputs; i++) {
83 switch (info->output_semantic_name[i]) {
86 unsigned j = info->output_semantic_index[i];
472 if (shader->info.uses_images || shader->info.uses_hw_atomic ||
473 shader->info.uses_shader_buffers) {
542 key->image_size_used = shader->info.uses_image_size;
545 /* Save info about which constant buffers are to be viewed
548 if (shader->info.const_buffers_declared &
934 /* Collect basic info of the shader */