Home | History | Annotate | Download | only in scriptc

Lines Matching refs:right

34  * multiply the two source matrices, with the first transformation as the right
61 * right: Right plane.
69 rsExtractFrustumPlanes(const rs_matrix4x4* viewProj, float4* left, float4* right, float4* top,
77 right->x = viewProj->m[3] - viewProj->m[0];
78 right->y = viewProj->m[7] - viewProj->m[4];
79 right->z = viewProj->m[11] - viewProj->m[8];
80 right->w = viewProj->m[15] - viewProj->m[12];
104 len = length(right->xyz);
105 *right /= len;
131 * right: Right plane.
139 rsIsSphereInFrustum(float4* sphere, float4* left, float4* right, float4* top, float4* bottom,
145 distToCenter = dot(right->xyz, sphere->xyz) + right->w;
171 rsIsSphereInFrustum(float4* sphere, float4* left, float4* right, float4* top, float4* bottom,
271 * the six clipping planes left, right, bottom, top, near, far.
280 rsMatrixLoadFrustum(rs_matrix4x4* m, float left, float right, float bottom, float top,
309 * Warning: Prior to version 21, storing the result back into right matrix is not supported and
317 * rhs: Right matrix of the product.
332 * six clipping planes left, right, bottom, top, near, far into a unit cube
344 rsMatrixLoadOrtho(rs_matrix4x4* m, float left, float right, float bottom, float top, float near,
441 * rhs: Right matrix of the product.