Lines Matching defs:info
143 static void decode_shader_info(struct state *state, struct shader_info *info);
414 * some more info, and then the shader itself.
423 decode_shader_info(struct state *state, struct shader_info *info)
425 assert((info->desc_off % 4) == 0);
427 U(info, 0000, 0010);
428 X(info, desc_off);
429 D(info, num_blocks);
431 dump_unknown(state, &info[1], 0, (info->desc_off - sizeof(*info)) / 4);
433 state->shader = info;
435 struct shader_descriptor_block *blocks = ((void *)info) + info->desc_off;
436 for (unsigned i = 0; i < info->num_blocks; i++) {