Home
last modified time | relevance | path

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

/third_party/mesa3d/src/compiler/nir/
Dnir_convert_ycbcr.c134 nir_fdot(b, expanded_channels, nir_build_imm(b, 4, 32, conversion_matrix->v[0])), in nir_convert_ycbcr_to_rgb()
135 nir_fdot(b, expanded_channels, nir_build_imm(b, 4, 32, conversion_matrix->v[1])), in nir_convert_ycbcr_to_rgb()
136 nir_fdot(b, expanded_channels, nir_build_imm(b, 4, 32, conversion_matrix->v[2])) in nir_convert_ycbcr_to_rgb()
Dnir_builtin_builder.c57 return nir_fsqrt(b, nir_fdot(b, vec, vec)); in nir_fast_length()
126 nir_ssa_def *res = nir_fmul(b, temp, nir_frsq(b, nir_fdot(b, temp, temp))); in nir_normalize()
Dnir_lower_tex.c681 nir_ssa_def *M = nir_fmax(b, nir_fdot(b, dx, dx), nir_fdot(b, dy, dy)); in lower_gradient_cube_map()
746 nir_fsqrt(b, nir_fdot(b, dPdx, dPdx)), in lower_gradient()
747 nir_fsqrt(b, nir_fdot(b, dPdy, dPdy))); in lower_gradient()
Dnir_lower_clip.c261 clipdist[plane] = nir_fdot(b, ucp, cv); in lower_clip_outputs()
Dnir_builder.h615 nir_fdot(nir_builder *build, nir_ssa_def *src0, nir_ssa_def *src1) in nir_fdot() function
/third_party/mesa3d/src/compiler/spirv/
Dvtn_glsl450.c404 nir_bcsel(nb, nir_flt(nb, nir_fdot(nb, src[2], src[1]), in handle_glsl450_alu()
414 nir_fmul(nb, nir_fdot(nb, src[0], src[1]), in handle_glsl450_alu()
422 nir_ssa_def *n_dot_i = nir_fdot(nb, N, I); in handle_glsl450_alu()
Dvtn_alu.c107 vec_src[j] = nir_fdot(&b->nb, src0_transpose->elems[j]->def, in matrix_multiply()
516 dest->def = nir_fdot(&b->nb, src[0], src[1]); in vtn_handle_alu()
/third_party/mesa3d/src/gallium/drivers/d3d12/
Dd3d12_gs_variant.cpp47 nir_ssa_def *dir = nir_fdot(b, nir_cross4(b, nir_fsub(b, v1, v0), in nir_cull_face()
/third_party/mesa3d/src/compiler/glsl/
Dglsl_to_nir.cpp2278 result = nir_fdot(&b, srcs[0], srcs[1]); in visit()
/third_party/mesa3d/docs/relnotes/
D21.3.0.rst3547 - nir,glsl_to_nir: use nir_fdot()