HomeSort by relevance Sort by last modified time
    Searched defs:alu_src (Results 1 - 3 of 3) sorted by null

  /external/mesa3d/src/compiler/nir/
nir_builder.h 301 nir_alu_src alu_src = { NIR_SRC_INIT }; local
302 alu_src.src = nir_src_for_ssa(src);
304 alu_src.swizzle[i] = swiz[i];
306 return use_fmov ? nir_fmov_alu(build, alu_src, num_components) :
307 nir_imov_alu(build, alu_src, num_components);
nir.c 1609 nir_alu_src *alu_src = exec_node_data(nir_alu_src, use, src); local
    [all...]
  /external/mesa3d/src/mesa/program/
prog_to_nir.c 876 nir_alu_src alu_src = { NIR_SRC_INIT }; local
877 alu_src.src = nir_src_for_reg(c->output_regs[FRAG_RESULT_DEPTH]);
878 alu_src.swizzle[0] = SWIZZLE_Z;
879 store->src[0] = nir_src_for_ssa(nir_fmov_alu(b, alu_src, 1));

Completed in 312 milliseconds