• Home
  • Raw
  • Download

Lines Matching full:components

63       coeffs += ROGUE_COEFF_ALIGN * args->components[u];  in alloc_iterator_regs()
77 * \param[in] components The number of components in the varying.
83 size_t components) in reserve_iterator() argument
87 assert(components >= 1 && components <= 4); in reserve_iterator()
109 /* Number of components in this varying in reserve_iterator()
112 data.size = (components - 1); in reserve_iterator()
125 args->components[i] = components; in reserve_iterator()
159 size_t components = glsl_get_components(var->type); in collect_io_data_fs() local
171 reserve_iterator(&fs_data->iterator_args, i, interp, f16, components); in collect_io_data_fs()
199 vs_inputs += inputs->components[u]; in alloc_vs_inputs()
220 vs_outputs += outputs->components[u]; in alloc_vs_outputs()
238 varyings += outputs->components[u]; in count_vs_varyings()
248 * \param[in] components The number of components in the input.
252 size_t components) in reserve_vs_input() argument
254 assert(components >= 1 && components <= 4); in reserve_vs_input()
259 inputs->components[i] = components; in reserve_vs_input()
268 * \param[in] components The number of components in the output.
272 size_t components) in reserve_vs_output() argument
274 assert(components >= 1 && components <= 4); in reserve_vs_output()
279 outputs->components[i] = components; in reserve_vs_output()
303 size_t components = glsl_get_components(var->type); in collect_io_data_vs() local
315 reserve_vs_input(&vs_data->inputs, i, components); in collect_io_data_vs()
328 size_t components = glsl_get_components(var->type); in collect_io_data_vs() local
336 assert(components == 4); in collect_io_data_vs()
339 reserve_vs_output(&vs_data->outputs, 0, components); in collect_io_data_vs()
343 reserve_vs_output(&vs_data->outputs, i, components); in collect_io_data_vs()
530 assert(component < args->components[i]); in rogue_coeff_index_fs()
563 assert(component < outputs->components[i]); in rogue_output_index_vs()