Searched refs:bbox_max (Results 1 – 2 of 2) sorted by relevance
/third_party/mesa3d/src/amd/llvm/ |
D | ac_llvm_cull.c | 163 LLVMValueRef bbox_min[3], bbox_max[3]; in cull_bbox() local 171 bbox_max[chan] = ac_build_fmax(ctx, pos[0][chan], pos[1][chan]); in cull_bbox() 175 bbox_max[chan] = ac_build_fmax(ctx, bbox_max[chan], pos[2][chan]); in cull_bbox() 180 bbox_max[chan] = LLVMBuildFAdd(builder, bbox_max[chan], clip_half_line_width[chan], ""); in cull_bbox() 191 visible = LLVMBuildFCmp(builder, LLVMRealOGE, bbox_max[chan], in cull_bbox() 218 max = ac_build_fmad(ctx, bbox_max[chan], vp_scale[chan], vp_translate[chan]); in cull_bbox()
|
/third_party/mesa3d/src/amd/common/ |
D | ac_nir_cull.c | 96 nir_ssa_def *bbox_min[3] = {0}, *bbox_max[3] = {0}; in cull_bbox() local 100 bbox_max[chan] = nir_fmax(b, pos[0][chan], nir_fmax(b, pos[1][chan], pos[2][chan])); in cull_bbox() 109 …prim_outside_view = nir_ior(b, prim_outside_view, nir_flt(b, bbox_max[chan], nir_imm_float(b, -1.0… in cull_bbox() 125 nir_ssa_def *max = nir_ffma(b, bbox_max[chan], vp_scale[chan], vp_translate[chan]); in cull_bbox()
|