Searched refs:samplemask (Results 1 – 5 of 5) sorted by relevance
/external/mesa3d/src/gallium/drivers/radeonsi/ |
D | si_shader_llvm_ps.c | 503 LLVMValueRef depth = NULL, stencil = NULL, samplemask = NULL; in si_llvm_return_fs_outputs() local 518 samplemask = LLVMBuildLoad(builder, addrs[4 * i + 0], ""); in si_llvm_return_fs_outputs() 566 if (samplemask) in si_llvm_return_fs_outputs() 567 ret = LLVMBuildInsertValue(builder, ret, samplemask, vgpr++, ""); in si_llvm_return_fs_outputs() 845 LLVMValueRef samplemask = ac_get_arg(&ctx->ac, param_sample_mask); in si_llvm_build_ps_prolog() local 847 samplemask = ac_to_integer(&ctx->ac, samplemask); in si_llvm_build_ps_prolog() 848 samplemask = in si_llvm_build_ps_prolog() 849 LLVMBuildAnd(ctx->ac.builder, samplemask, in si_llvm_build_ps_prolog() 853 samplemask = ac_to_float(&ctx->ac, samplemask); in si_llvm_build_ps_prolog() 855 ret = LLVMBuildInsertValue(ctx->ac.builder, ret, samplemask, param_sample_mask.arg_index, ""); in si_llvm_build_ps_prolog() [all …]
|
/external/mesa3d/.gitlab-ci/piglit/ |
D | quick_gl.txt | 533 spec/arb_sample_shading/samplemask 0 all: skip 534 spec/arb_sample_shading/samplemask 16: skip 535 spec/arb_sample_shading/samplemask 16 all: skip 536 spec/arb_sample_shading/samplemask 2 all/0.250000 mask_in_one: fail 537 spec/arb_sample_shading/samplemask 2 all/0.500000 mask_in_one: fail 538 spec/arb_sample_shading/samplemask 2 all/1.000000 mask_in_one: fail 539 spec/arb_sample_shading/samplemask 2 all/noms fix: fail 540 spec/arb_sample_shading/samplemask 2 all/noms mask_in_one: fail 541 spec/arb_sample_shading/samplemask 2 all/noms partition: fail 542 spec/arb_sample_shading/samplemask 2 all/sample mask_in_one: fail [all …]
|
/external/mesa3d/src/amd/llvm/ |
D | ac_llvm_build.c | 4398 LLVMValueRef samplemask, struct ac_export_args *args) in ac_export_mrt_z() argument 4401 unsigned format = ac_get_spi_shader_z_format(depth != NULL, stencil != NULL, samplemask != NULL); in ac_export_mrt_z() 4403 assert(depth || stencil || samplemask); in ac_export_mrt_z() 4430 if (samplemask) { in ac_export_mrt_z() 4432 args->out[1] = samplemask; in ac_export_mrt_z() 4444 if (samplemask) { in ac_export_mrt_z() 4445 args->out[2] = samplemask; in ac_export_mrt_z()
|
D | ac_llvm_build.h | 560 LLVMValueRef samplemask, struct ac_export_args *args);
|
/external/mesa3d/src/amd/vulkan/ |
D | radv_nir_to_llvm.c | 3473 LLVMValueRef samplemask) in radv_export_mrt_z() argument 3477 ac_export_mrt_z(&ctx->ac, depth, stencil, samplemask, &args); in radv_export_mrt_z() 3486 LLVMValueRef depth = NULL, stencil = NULL, samplemask = NULL; in handle_fs_outputs_post() local 3519 samplemask = ac_to_float(&ctx->ac, in handle_fs_outputs_post() 3540 if (depth || stencil || samplemask) in handle_fs_outputs_post() 3541 radv_export_mrt_z(ctx, depth, stencil, samplemask); in handle_fs_outputs_post()
|