Searched refs:is_ms (Results 1 - 5 of 5) sorted by relevance
/third_party/mesa3d/src/panfrost/vulkan/ |
H A D | panvk_vX_meta_copy.c | 315 unsigned texdim, bool texisarray, bool is_ms, in panvk_meta_copy_img2img_shader() 323 texdim, texisarray ? "[]" : "", is_ms ? ",ms" : ""); in panvk_meta_copy_img2img_shader() 332 nir_tex_instr *tex = nir_tex_instr_create(b.shader, is_ms ? 2 : 1); in panvk_meta_copy_img2img_shader() 333 tex->op = is_ms ? nir_texop_txf_ms : nir_texop_txf; in panvk_meta_copy_img2img_shader() 350 if (is_ms) { in panvk_meta_copy_img2img_shader() 465 shader_info->fs.sample_shading = is_ms; in panvk_meta_copy_img2img_shader() 719 panvk_meta_copy_img2img_init(struct panvk_physical_device *dev, bool is_ms) in panvk_meta_copy_img2img_init() argument 729 if (texdim == 3 && is_ms) continue; in panvk_meta_copy_img2img_init() 737 texdim, false, is_ms, &shader_info); in panvk_meta_copy_img2img_init() 738 dev->meta.copy.img2img[is_ms][texdimid in panvk_meta_copy_img2img_init() 311 panvk_meta_copy_img2img_shader(struct panfrost_device *pdev, struct pan_pool *bin_pool, enum pipe_format srcfmt, enum pipe_format dstfmt, unsigned dstmask, unsigned texdim, bool texisarray, bool is_ms, struct pan_shader_info *shader_info) panvk_meta_copy_img2img_shader() argument [all...] |
/third_party/mesa3d/src/gallium/drivers/zink/nir_to_spirv/ |
H A D | nir_to_spirv.c | 708 type_to_dim(enum glsl_sampler_dim gdim, bool *is_ms) in type_to_dim() argument 710 *is_ms = false; in type_to_dim() 727 *is_ms = true; in type_to_dim() 730 *is_ms = true; in type_to_dim() 863 bool is_ms; in get_bare_image_type() local 874 SpvDim dimension = type_to_dim(glsl_get_sampler_dim(type), &is_ms); in get_bare_image_type() 896 is_ms, is_sampler ? 1 : 2, in get_bare_image_type() 2885 bool is_ms; in emit_image_intrinsic() local 2886 type_to_dim(glsl_get_sampler_dim(type), &is_ms); in emit_image_intrinsic() local 2887 SpvId sample = is_ms in emit_image_intrinsic() [all...] |
/third_party/skia/third_party/externals/tint/src/writer/hlsl/ |
H A D | generator_impl.cc | 1980 bool is_ms = texture_type->IsAnyOf<sem::MultisampledTexture, 1995 num_dimensions = is_ms ? 3 : 2; 1996 swizzle = is_ms ? ".xy" : ""; 1999 num_dimensions = is_ms ? 4 : 3; 2021 num_dimensions = is_ms ? 4 : 3;
|
/third_party/mesa3d/src/amd/llvm/ |
H A D | ac_nir_to_llvm.c | 2499 bool is_ms = (dim == GLSL_SAMPLER_DIM_MS || dim == GLSL_SAMPLER_DIM_SUBPASS_MS); in get_image_coords() local 2505 is_ms && (instr->intrinsic == nir_intrinsic_image_deref_load || in get_image_coords() 2529 if (is_ms) in get_image_coords() 2560 if (is_ms) { in get_image_coords()
|
/third_party/mesa3d/src/amd/compiler/ |
H A D | aco_instruction_selection.cpp | 6124 bool is_ms = (dim == GLSL_SAMPLER_DIM_MS || dim == GLSL_SAMPLER_DIM_SUBPASS_MS); 6130 if (is_ms)
|
Completed in 32 milliseconds