Searched refs:dp0 (Results 1 - 8 of 8) sorted by relevance

/xsrc/external/mit/MesaLib.old/dist/src/intel/compiler/
H A Dbrw_clip_line.c71 c->reg.dp0 = brw_vec1_grf(i, 0); /* fixme - dp4 will clobber r.1,2,3 */
101 * GLfloat dp0 = DOTPROD( vtx0, plane[p] );
105 * GLfloat t = dp1 / (dp1 - dp0);
108 * GLfloat t = dp0 / (dp0 - dp1);
182 brw_MOV(p, c->reg.dp0, deref_1f(temp_ptr, 0));
194 brw_DP4(p, vec4(c->reg.dp0), deref_4f(vtx0, hpos_offset), c->reg.plane_equation);
208 brw_CMP(p, vec1(brw_null_reg()), BRW_CONDITIONAL_LE, c->reg.dp0, brw_imm_f(0.0));
216 brw_ADD(p, c->reg.t, c->reg.dp1, negate(c->reg.dp0));
234 brw_CMP(p, vec1(brw_null_reg()), BRW_CONDITIONAL_L, c->reg.dp0, brw_imm_
[all...]
H A Dbrw_clip.h57 struct brw_reg dp0, dp1; member in struct:brw_clip_compile::__anon320cc4c60108
/xsrc/external/mit/MesaLib/dist/src/intel/compiler/
H A Dbrw_clip_line.c71 c->reg.dp0 = brw_vec1_grf(i, 0); /* fixme - dp4 will clobber r.1,2,3 */
101 * GLfloat dp0 = DOTPROD( vtx0, plane[p] );
105 * GLfloat t = dp1 / (dp1 - dp0);
108 * GLfloat t = dp0 / (dp0 - dp1);
182 brw_MOV(p, c->reg.dp0, deref_1f(temp_ptr, 0));
194 brw_DP4(p, vec4(c->reg.dp0), deref_4f(vtx0, hpos_offset), c->reg.plane_equation);
208 brw_CMP(p, vec1(brw_null_reg()), BRW_CONDITIONAL_LE, c->reg.dp0, brw_imm_f(0.0));
216 brw_ADD(p, c->reg.t, c->reg.dp1, negate(c->reg.dp0));
234 brw_CMP(p, vec1(brw_null_reg()), BRW_CONDITIONAL_L, c->reg.dp0, brw_imm_
[all...]
H A Dbrw_clip.h57 struct brw_reg dp0, dp1; member in struct:brw_clip_compile::__anon95b28a790108
/xsrc/external/mit/MesaLib.old/dist/src/mesa/tnl/
H A Dt_vb_cliptmp.h86 const GLfloat dp0 = CLIP_DOTPROD( v0, A, B, C, D ); \
88 const GLboolean neg_dp0 = dp0 < 0.0f; \
102 GLfloat t = dp1 / (dp1 - dp0); \
105 GLfloat t = dp0 / (dp0 - dp1); \
/xsrc/external/mit/MesaLib/dist/src/mesa/tnl/
H A Dt_vb_cliptmp.h86 const GLfloat dp0 = CLIP_DOTPROD( v0, A, B, C, D ); \
88 const GLboolean neg_dp0 = dp0 < 0.0f; \
102 GLfloat t = dp1 / (dp1 - dp0); \
105 GLfloat t = dp0 / (dp0 - dp1); \
/xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/draw/
H A Ddraw_pipe_clip.c586 const float dp0 = getclipdist(clipper, v0, plane_idx); local in function:do_clip_line
589 if (util_is_inf_or_nan(dp0) || util_is_inf_or_nan(dp1))
593 float t = dp1 / (dp1 - dp0);
597 if (dp0 < 0.0F) {
598 float t = dp0 / (dp0 - dp1);
/xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/draw/
H A Ddraw_pipe_clip.c597 const float dp0 = getclipdist(clipper, v0, plane_idx); local in function:do_clip_line
600 if (util_is_inf_or_nan(dp0) || util_is_inf_or_nan(dp1))
604 float t = dp1 / (dp1 - dp0);
608 if (dp0 < 0.0F) {
609 float t = dp0 / (dp0 - dp1);

Completed in 10 milliseconds