Lines Matching refs:n
115 MTX34TextureProjectionFrustum(MTX34* pOut, f32 l, f32 r, f32 b, f32 t, f32 n, f32 scaleS, f32 scale…
125 mtx[0][0] = ((2.0f * n) * reverseWidth) * scaleS;
132 mtx[1][1] = ((2.0f * n) * reverseHeight) * scaleT;
203 MTX34ShadowProjectionFrustum(MTX34* pOut, f32 l, f32 r, f32 b, f32 t, f32 n, f32 f)
210 f32 scale = -1.0f / (f - n);
214 mtx[0][0] = ((-1.0f * n) * reverseWidth) * scale;
221 mtx[1][1] = ((-1.0f * n) * reverseHeight) * scale;
233 MTX34ShadowProjectionOrtho(MTX34* pOut, f32 l, f32 r, f32 b, f32 t, f32 n, f32 f)
254 f32 tmp = -1.0f / (f - n);
258 mtx[2][3] = n * tmp;
263 MTX34ShadowProjectionPerspective(MTX34* pOut, f32 fovy, f32 aspect, f32 n, f32 f)
271 f32 scale = -1.0f / (f - n);