Lines Matching refs:z
59 static void G3_Scale(fx32 x, fx32 y, fx32 z);
60 static void G3_Translate(fx32 x, fx32 y, fx32 z);
62 static void G3_Normal(fx16 x, fx16 y, fx16 z);
64 static void G3_Vtx(fx16 x, fx16 y, fx16 z);
65 static void G3_Vtx10(fx16 x, fx16 y, fx16 z);
67 static void G3_VtxXZ(fx16 x, fx16 z);
68 static void G3_VtxYZ(fx16 y, fx16 z);
69 static void G3_VtxDiff(fx16 x, fx16 y, fx16 z);
80 static void G3_LightVector(GXLightId lightID, fx16 x, fx16 y, fx16 z);
88 static void G3_PositionTest(fx16 x, fx16 y, fx16 z);
89 static void G3_VectorTest(fx16 x, fx16 y, fx16 z);
278 static inline void G3_Scale(fx32 x, fx32 y, fx32 z) in G3_Scale() argument
282 reg_G3_MTX_SCALE = (u32)z; in G3_Scale()
297 static inline void G3_Translate(fx32 x, fx32 y, fx32 z) in G3_Translate() argument
301 reg_G3_MTX_TRANS = (u32)z; in G3_Translate()
333 static inline void G3_Normal(fx16 x, fx16 y, fx16 z) in G3_Normal() argument
337 SDK_MINMAX_ASSERT(z, -FX16_ONE, FX16_ONE - 1); in G3_Normal()
339 reg_G3_NORMAL = GX_PACK_NORMAL_PARAM(x, y, z); in G3_Normal()
373 static inline void G3_Vtx(fx16 x, fx16 y, fx16 z) in G3_Vtx() argument
376 reg_G3_VTX_16 = (u32)(u16)z; in G3_Vtx()
390 static inline void G3_Vtx10(fx16 x, fx16 y, fx16 z) in G3_Vtx10() argument
392 reg_G3_VTX_10 = GX_PACK_VTX10_PARAM(x, y, z); in G3_Vtx10()
424 static inline void G3_VtxXZ(fx16 x, fx16 z) in G3_VtxXZ() argument
426 reg_G3_VTX_XZ = GX_PACK_VTXXZ_PARAM(x, z); in G3_VtxXZ()
441 static inline void G3_VtxYZ(fx16 y, fx16 z) in G3_VtxYZ() argument
443 reg_G3_VTX_YZ = GX_PACK_VTXYZ_PARAM(y, z); in G3_VtxYZ()
458 static inline void G3_VtxDiff(fx16 x, fx16 y, fx16 z) in G3_VtxDiff() argument
462 SDK_MINMAX_ASSERT(z, (fx16)0xfe00, (fx16)0x1ff); in G3_VtxDiff()
464 reg_G3_VTX_DIFF = GX_PACK_VTXDIFF_PARAM(x, y, z); in G3_VtxDiff()
604 static inline void G3_LightVector(GXLightId lightID, fx16 x, fx16 y, fx16 z) in G3_LightVector() argument
609 SDK_MINMAX_ASSERT(z, -FX16_ONE, FX16_ONE - 1); in G3_LightVector()
611 reg_G3_LIGHT_VECTOR = GX_PACK_LIGHTVECTOR_PARAM(lightID, x, y, z); in G3_LightVector()
733 static inline void G3_PositionTest(fx16 x, fx16 y, fx16 z) in G3_PositionTest() argument
736 reg_G3_POS_TEST = (u32)(u16)z; in G3_PositionTest()
751 static inline void G3_VectorTest(fx16 x, fx16 y, fx16 z) in G3_VectorTest() argument
755 SDK_MINMAX_ASSERT(z, -FX16_ONE, FX16_ONE - 1); in G3_VectorTest()
757 reg_G3_VEC_TEST = GX_PACK_VECTORTEST_PARAM(x, y, z); in G3_VectorTest()