• Home
  • Raw
  • Download

Lines Matching refs:rhs

236 void matrixx_t::load(const matrixf_t& rhs) {  in load()  argument
238 GLfloat const* fp = rhs.elements(); in load()
252 void matrixf_t::multiply(matrixf_t& r, const matrixf_t& lhs, const matrixf_t& rhs) in multiply() argument
256 register const float rhs_i0 = rhs.m[ I(i,0) ]; in multiply()
262 register const float rhs_ij = rhs.m[ I(i,j) ]; in multiply()
287 void matrixf_t::set(const GLfixed* rhs) { in set() argument
288 load(rhs); in set()
291 void matrixf_t::set(const GLfloat* rhs) { in set() argument
292 load(rhs); in set()
295 void matrixf_t::load(const GLfixed* rhs) { in load() argument
299 *fp++ = fixedToFloat(*rhs++); in load()
303 void matrixf_t::load(const GLfloat* rhs) { in load() argument
304 memcpy(m, rhs, sizeof(m)); in load()
307 void matrixf_t::load(const matrixf_t& rhs) { in load() argument
308 operator = (rhs); in load()
311 void matrixf_t::multiply(const matrixf_t& rhs) { in multiply() argument
313 multiply(r, *this, rhs); in multiply()
406 void matrix_stack_t::load(const GLfixed* rhs) in load() argument
408 memcpy(transform.matrix.m, rhs, sizeof(transform.matrix.m)); in load()
409 stack[depth].load(rhs); in load()
413 void matrix_stack_t::load(const GLfloat* rhs) in load() argument
415 stack[depth].load(rhs); in load()
419 void matrix_stack_t::multiply(const matrixf_t& rhs) in multiply() argument
421 stack[depth].multiply(rhs); in multiply()
724 void point2__generic(transform_t const* mx, vec4_t* lhs, vec4_t const* rhs) { in point2__generic() argument
726 const GLfixed rx = rhs->x; in point2__generic()
727 const GLfixed ry = rhs->y; in point2__generic()
734 void point3__generic(transform_t const* mx, vec4_t* lhs, vec4_t const* rhs) { in point3__generic() argument
736 const GLfixed rx = rhs->x; in point3__generic()
737 const GLfixed ry = rhs->y; in point3__generic()
738 const GLfixed rz = rhs->z; in point3__generic()
745 void point4__generic(transform_t const* mx, vec4_t* lhs, vec4_t const* rhs) { in point4__generic() argument
747 const GLfixed rx = rhs->x; in point4__generic()
748 const GLfixed ry = rhs->y; in point4__generic()
749 const GLfixed rz = rhs->z; in point4__generic()
750 const GLfixed rw = rhs->w; in point4__generic()
757 void point3__mvui(transform_t const* mx, vec4_t* lhs, vec4_t const* rhs) { in point3__mvui() argument
762 const GLfixed rx = rhs->x; in point3__mvui()
763 const GLfixed ry = rhs->y; in point3__mvui()
764 const GLfixed rz = rhs->z; in point3__mvui()
771 void point4__mvui(transform_t const* mx, vec4_t* lhs, vec4_t const* rhs) { in point4__mvui() argument
776 const GLfixed rx = rhs->x; in point4__mvui()
777 const GLfixed ry = rhs->y; in point4__mvui()
778 const GLfixed rz = rhs->z; in point4__mvui()
779 const GLfixed rw = rhs->w; in point4__mvui()
786 void point2__nop(transform_t const*, vec4_t* lhs, vec4_t const* rhs) { in point2__nop() argument
789 if (lhs != rhs) { in point2__nop()
790 lhs->x = rhs->x; in point2__nop()
791 lhs->y = rhs->y; in point2__nop()
795 void point3__nop(transform_t const*, vec4_t* lhs, vec4_t const* rhs) { in point3__nop() argument
797 if (lhs != rhs) { in point3__nop()
798 lhs->x = rhs->x; in point3__nop()
799 lhs->y = rhs->y; in point3__nop()
800 lhs->z = rhs->z; in point3__nop()
804 void point4__nop(transform_t const*, vec4_t* lhs, vec4_t const* rhs) { in point4__nop() argument
805 if (lhs != rhs) in point4__nop()
806 *lhs = *rhs; in point4__nop()
846 matrixf_t rhs; in frustumf() local
847 rhs.set(f); in frustumf()
848 c->transforms.current->multiply(rhs); in frustumf()
885 matrixf_t rhs; in orthof() local
886 rhs.set(f); in orthof()
887 c->transforms.current->multiply(rhs); in orthof()
957 matrixf_t rhs; in glMultMatrixf() local
958 rhs.set(m); in glMultMatrixf()
959 c->transforms.current->multiply(rhs); in glMultMatrixf()
966 matrixf_t rhs; in glMultMatrixx() local
967 rhs.set(m); in glMultMatrixx()
968 c->transforms.current->multiply(rhs); in glMultMatrixx()