G3*_LoadMtx43

C Specification

#include <nitro/gx/g3imm.h>
#include <nitro/gx/g3b.h>
#include <nitro/gx/g3c.h>

void G3_LoadMtx43(const MtxFx43* m);

// Below are APIs for creating the display list (command list)
void G3B_LoadMtx43(GXDLInfo* info, const MtxFx43* m);
void G3C_LoadMtx43(GXDLInfo* info, const MtxFx43* m);
void G3BS_LoadMtx43(GXDLInfo* info, const MtxFx43* m);
void G3CS_LoadMtx43(GXDLInfo* info, const MtxFx43* m);

Arguments

info Command List Information
m   The pointer to a 4x3 matrix.

Return Values

None.

Description

This function sets a 4x3 matrix as the current matrix. Each element of the matrix is a signed fixed-point number (sign + 19-bit integer + 12-bit decimal).

See Also

G3*_MtxMode, G3*_Identity, G3*_LoadMtx44, G3*_MultMtx43, G3*_MultMtx44, G3*_MultMtx33, G3*_PushMtx, G3*_PopMtx, G3*_StoreMtx, G3*_RestoreMtx, G3*_Scale, G3*_Translate

Revision History

01/19/2004 Initial version