Searched refs:coord_mask (Results 1 - 5 of 5) sorted by relevance
/third_party/mesa3d/src/gallium/drivers/i915/ |
H A D | i915_fpc_emit.c | 179 uint32_t coord_mask) in i915_emit_texld() 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() 177 i915_emit_texld(struct i915_fp_compile *p, uint32_t dest, uint32_t destmask, uint32_t sampler, uint32_t coord, uint32_t opcode, uint32_t coord_mask) i915_emit_texld() argument
|
H A D | i915_fpc_translate.c | 371 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() 573 TGSI_WRITEMASK_XYZW);/* coord_mask */ in i915_translate_instruction() 586 TGSI_WRITEMASK_X); /* coord_mask */ in i915_translate_instruction()
|
H A D | i915_fpc.h | 188 uint32_t coord_mask);
|
/third_party/mesa3d/src/gallium/drivers/llvmpipe/ |
H A D | lp_state_fs_analysis.c | 92 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/ |
H A D | brw_vec4_nir.cpp | 2161 int coord_mask = (1 << instr->coord_components) - 1; 2162 int zero_mask = 0xf & ~coord_mask; 2164 emit(MOV(dst_reg(MRF, param_base, coordinate.type, coord_mask), 2305 int coord_mask = (1 << coordinate_type->vector_elements) - 1; 2306 int zero_mask = 0xf & ~coord_mask; 2308 emit(MOV(dst_reg(MRF, param_base, coordinate_type, coord_mask),
|
Completed in 6 milliseconds