Home
last modified time | relevance | path

Searched refs:const_idx (Results 1 – 10 of 10) sorted by relevance

/third_party/mesa3d/src/intel/tools/
Daubinator_viewer_urb.h42 int const_idx = 0; in DrawAllocation() local
52 ImVec2 const_tl(x + const_idx * alloc_delta, y); in DrawAllocation()
53 ImVec2 const_br(x + (const_idx + stages[s].const_rd_length) * alloc_delta, in DrawAllocation()
89 const_idx += stages[s].const_rd_length; in DrawAllocation()
/third_party/mesa3d/src/panfrost/bifrost/
Ddisassemble.c581 unsigned const_idx; in dump_clause() member
605 unsigned const_idx = pos_table[pos].const_idx; in dump_clause() local
607 if (num_consts < const_idx + 2) in dump_clause()
608 num_consts = const_idx + 2; in dump_clause()
610 consts.raw[const_idx] = const0; in dump_clause()
611 consts.raw[const_idx + 1] = const1; in dump_clause()
626 decode_M(&consts.mods[const_idx], M1, M2, false); in dump_clause()
/third_party/mesa3d/src/freedreno/decode/
Dpgmdump.c126 uint32_t const_idx; /* the CONST() indx value for sampler */ member
200 uint32_t const_idx; /* the CONST() indx value for the sampler */ member
229 uint32_t const_idx; member
323 printf("\tR%d, CONST(%d): %s\n", attrib->reg, attrib->const_idx, in dump_attribute()
350 printf("\tCONST(%d): %s\n", sampler->const_idx, sampler->name); in dump_sampler()
381 printf("\tC%d: %f, %f, %f, %f\n", constant->const_idx, constant->val[0], in dump_constant()
/third_party/mesa3d/src/gallium/drivers/freedreno/a2xx/
Dfd2_emit.c116 unsigned const_idx = fd2_get_const_idx(ctx, tex, samp_id); in emit_texture() local
123 if (emitted & (1 << const_idx)) in emit_texture()
135 OUT_RING(ring, 0x00010000 + (0x6 * const_idx)); in emit_texture()
152 return (1 << const_idx); in emit_texture()
Dir2_assemble.c188 assert(instr->fetch.vtx.const_idx <= 0x1f); in fill_instr()
197 vtx->const_index = instr->fetch.vtx.const_idx; in fill_instr()
Dir2_private.h111 uint8_t const_idx; member
Dfd2_program.c200 instr->tex.const_idx = fd2_get_const_idx(ctx, tex, fi->tex.samp_id); in patch_fetches()
Dir2_nir.c501 instr->fetch.vtx.const_idx = 20 + (idx / 3); in load_input()
/third_party/mesa3d/src/freedreno/ir2/
Dinstr-a2xx.h325 uint32_t const_idx : 5; member
Ddisasm-a2xx.c423 printf(" CONST(%u)", tex->const_idx); in print_fetch_tex()