Home
last modified time | relevance | path

Searched refs:coord_mask (Results 1 – 5 of 5) sorted by relevance

/third_party/mesa3d/src/gallium/drivers/i915/
Di915_fpc_emit.c179 uint32_t coord_mask) in i915_emit_texld() argument
186 if (coord_mask & TGSI_WRITEMASK_Y) in i915_emit_texld()
188 if (coord_mask & TGSI_WRITEMASK_Z) in i915_emit_texld()
190 if (coord_mask & TGSI_WRITEMASK_W) in i915_emit_texld()
218 coord_mask); in i915_emit_texld()
Di915_fpc_translate.c371 uint32_t coord_mask = 0; in i915_coord_mask() local
374 coord_mask |= TGSI_WRITEMASK_W; in i915_coord_mask()
380 return coord_mask | TGSI_WRITEMASK_XY; in i915_coord_mask()
387 return coord_mask | TGSI_WRITEMASK_XYZ; in i915_coord_mask()
Di915_fpc.h188 uint32_t coord_mask);
/third_party/mesa3d/src/gallium/drivers/llvmpipe/
Dlp_state_fs_analysis.c92 unsigned coord_mask; in match_aero_minification_shader() local
106 coord_mask = 0; in match_aero_minification_shader()
119 coord_mask |= 1 << (tex->coord[0].u.index*2 + tex->coord[0].swizzle/2); in match_aero_minification_shader()
121 if (coord_mask != 0xf) { in match_aero_minification_shader()
/third_party/mesa3d/src/intel/compiler/
Dbrw_vec4_nir.cpp2161 int coord_mask = (1 << instr->coord_components) - 1; in nir_emit_texture() local
2162 int zero_mask = 0xf & ~coord_mask; in nir_emit_texture()
2164 emit(MOV(dst_reg(MRF, param_base, coordinate.type, coord_mask), in nir_emit_texture()
2305 int coord_mask = (1 << coordinate_type->vector_elements) - 1; in emit_mcs_fetch() local
2306 int zero_mask = 0xf & ~coord_mask; in emit_mcs_fetch()
2308 emit(MOV(dst_reg(MRF, param_base, coordinate_type, coord_mask), in emit_mcs_fetch()