HomeSort by: relevance | last modified time | path
    Searched refs:vp_scale (Results 1 - 11 of 11) sorted by relevancy

  /xsrc/external/mit/MesaLib/dist/src/amd/llvm/
ac_llvm_cull.h 58 LLVMValueRef initially_accepted, LLVMValueRef vp_scale[2],
ac_llvm_cull.c 119 LLVMValueRef vp_scale[2], LLVMValueRef vp_translate[2],
183 min = ac_build_fmad(ctx, bbox_min[chan], vp_scale[chan], vp_translate[chan]);
184 max = ac_build_fmad(ctx, bbox_max[chan], vp_scale[chan], vp_translate[chan]);
191 * It also works for MSAA, but vp_scale, vp_translate,
219 * \param vp_scale Viewport scale XY.
231 LLVMValueRef initially_accepted, LLVMValueRef vp_scale[2],
250 cull_bbox(ctx, pos, accepted, &w, vp_scale, vp_translate, small_prim_precision, options,
  /xsrc/external/mit/MesaLib/dist/src/amd/common/
ac_nir_cull.c 103 nir_ssa_def *vp_scale[2] = { nir_build_load_viewport_x_scale(b), nir_build_load_viewport_y_scale(b), }; local
124 nir_ssa_def *min = nir_ffma(b, bbox_min[chan], vp_scale[chan], vp_translate[chan]);
125 nir_ssa_def *max = nir_ffma(b, bbox_max[chan], vp_scale[chan], vp_translate[chan]);
  /xsrc/external/mit/MesaLib/dist/src/mesa/tnl/
t_vertex.c 433 vtx->vp_scale[0] = a->vp[MAT_SX];
434 vtx->vp_scale[1] = a->vp[MAT_SY];
435 vtx->vp_scale[2] = a->vp[MAT_SZ];
436 vtx->vp_scale[3] = 1.0;
t_context.h 377 GLfloat vp_scale[4]; member in struct:tnl_clipspace
t_vertex_sse.c 388 sse_movups(&p->func, vp0, x86_make_disp(vtxESI, get_offset(vtx, &vtx->vp_scale[0])));
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/tnl/
t_vertex.c 432 vtx->vp_scale[0] = a->vp[MAT_SX];
433 vtx->vp_scale[1] = a->vp[MAT_SY];
434 vtx->vp_scale[2] = a->vp[MAT_SZ];
435 vtx->vp_scale[3] = 1.0;
t_context.h 377 GLfloat vp_scale[4]; member in struct:tnl_clipspace
t_vertex_sse.c 388 sse_movups(&p->func, vp0, x86_make_disp(vtxESI, get_offset(vtx, &vtx->vp_scale[0])));
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/radeonsi/
gfx10_shader_ngg.c 977 LLVMValueRef vp_scale[2], vp_translate[2]; local
978 vp_scale[0] = ac_llvm_extract_elem(&ctx->ac, vp, 0);
979 vp_scale[1] = ac_llvm_extract_elem(&ctx->ac, vp, 1);
1014 ac_cull_primitive(&ctx->ac, pos, ctx->ac.i1true, vp_scale, vp_translate,
  /xsrc/external/mit/MesaLib/dist/src/amd/vulkan/
radv_cmd_buffer.c 6462 float vp_scale[2], vp_translate[2]; local
6463 memcpy(vp_scale, cmd_buffer->state.dynamic.viewport.xform[0].scale, 2 * sizeof(float));
6465 bool vp_y_inverted = (-vp_scale[1] + vp_translate[1]) > (vp_scale[1] + vp_translate[1]);
6480 vp_scale[1] = -vp_scale[1];
6486 vp_scale[i] *= (float) pipeline->graphics.ms.num_samples;
6490 uint32_t vp_reg_values[4] = {fui(vp_scale[0]), fui(vp_scale[1]), fui(vp_translate[0]), fui(vp_translate[1])};

Completed in 19 milliseconds