#include <nitro/gx/g3imm.h>
#include <nitro/gx/g3b.h>
#include <nitro/gx/g3c.h>
void G3_MultMtx33(const MtxFx33* m);
// Below are APIs for creating the display list (command list)
void G3B_MultMtx33(GXDLInfo* info, const MtxFx33* m);
void G3C_MultMtx33(GXDLInfo* info, const MtxFx33* m);
void G3BS_MultMtx33(GXDLInfo* info, const MtxFx33* m);
void G3CS_MultMtx33(GXDLInfo* info, const MtxFx33* m);
info | Command List Information |
m |
Pointer to the matrix to be multiplied |
None.
This function premultiplies the current matrix by a 3x3 matrix. Each element of the matrix is a signed fixed-point number (sign + 19-bit integer + 12-bit decimal). If the current matrix is C
, then the new matrix, Cnew
, is in the format shown below.
G3*_MtxMode, G3*_Identity, G3*_LoadMtx43, G3*_LoadMtx44, G3*_MultMtx43, G3*_MultMtx44, G3_MultTransMtx33.html, G3*_PushMtx, G3*_PopMtx, G3*_StoreMtx, G3*_RestoreMtx, G3*_Scale, G3*_Translate
01/19/2004 Initial version.