Lines Matching refs:y

67 static void G3CS_Scale(GXDLInfo *info, fx32 x, fx32 y, fx32 z);
68 static void G3CS_Translate(GXDLInfo *info, fx32 x, fx32 y, fx32 z);
70 static void G3CS_Normal(GXDLInfo *info, fx16 x, fx16 y, fx16 z);
72 static void G3CS_Vtx(GXDLInfo *info, fx16 x, fx16 y, fx16 z);
73 static void G3CS_Vtx10(GXDLInfo *info, fx16 x, fx16 y, fx16 z);
74 static void G3CS_VtxXY(GXDLInfo *info, fx16 x, fx16 y);
76 static void G3CS_VtxYZ(GXDLInfo *info, fx16 y, fx16 z);
77 static void G3CS_VtxDiff(GXDLInfo *info, fx16 x, fx16 y, fx16 z);
91 static void G3CS_LightVector(GXDLInfo *info, GXLightId lightID, fx16 x, fx16 y, fx16 z);
99 static void G3CS_PositionTest(GXDLInfo *info, fx16 x, fx16 y, fx16 z);
100 static void G3CS_VectorTest(GXDLInfo *info, fx16 x, fx16 y, fx16 z);
123 void G3C_Scale(GXDLInfo *info, fx32 x, fx32 y, fx32 z);
124 void G3C_Translate(GXDLInfo *info, fx32 x, fx32 y, fx32 z);
126 void G3C_Normal(GXDLInfo *info, fx16 x, fx16 y, fx16 z);
128 void G3C_Vtx(GXDLInfo *info, fx16 x, fx16 y, fx16 z);
130 void G3C_VtxXY(GXDLInfo *info, fx16 x, fx16 y);
132 void G3C_VtxYZ(GXDLInfo *info, fx16 y, fx16 z);
133 void G3C_VtxDiff(GXDLInfo *info, fx16 x, fx16 y, fx16 z);
145 void G3C_LightVector(GXDLInfo *info, GXLightId lightID, fx16 x, fx16 y, fx16 z);
153 void G3C_PositionTest(GXDLInfo *info, fx16 x, fx16 y, fx16 z);
154 void G3C_VectorTest(GXDLInfo *info, fx16 x, fx16 y, fx16 z);
307 static inline void G3CS_Scale(GXDLInfo *info, fx32 x, fx32 y, fx32 z) in G3CS_Scale() argument
309 G3CS_Direct3(info, G3OP_MTX_SCALE, (u32)x, (u32)y, (u32)z); in G3CS_Scale()
326 static inline void G3CS_Translate(GXDLInfo *info, fx32 x, fx32 y, fx32 z) in G3CS_Translate() argument
328 G3CS_Direct3(info, G3OP_MTX_TRANS, (u32)x, (u32)y, (u32)z); in G3CS_Translate()
362 static inline void G3CS_Normal(GXDLInfo *info, fx16 x, fx16 y, fx16 z) in G3CS_Normal() argument
365 SDK_MINMAX_ASSERT(y, -FX16_ONE, FX16_ONE - 1); in G3CS_Normal()
368 G3CS_Direct1(info, G3OP_NORMAL, GX_PACK_NORMAL_PARAM(x, y, z)); in G3CS_Normal()
404 static inline void G3CS_Vtx(GXDLInfo *info, fx16 x, fx16 y, fx16 z) in G3CS_Vtx() argument
406 G3CS_Direct2(info, G3OP_VTX_16, GX_FX16PAIR(x, y), (u32)(u16)z); in G3CS_Vtx()
422 static inline void G3CS_Vtx10(GXDLInfo *info, fx16 x, fx16 y, fx16 z) in G3CS_Vtx10() argument
424 G3CS_Direct1(info, G3OP_VTX_10, GX_PACK_VTX10_PARAM(x, y, z)); in G3CS_Vtx10()
440 static inline void G3CS_VtxXY(GXDLInfo *info, fx16 x, fx16 y) in G3CS_VtxXY() argument
442 G3CS_Direct1(info, G3OP_VTX_XY, GX_PACK_VTXXY_PARAM(x, y)); in G3CS_VtxXY()
476 static inline void G3CS_VtxYZ(GXDLInfo *info, fx16 y, fx16 z) in G3CS_VtxYZ() argument
478 G3CS_Direct1(info, G3OP_VTX_YZ, GX_PACK_VTXYZ_PARAM(y, z)); in G3CS_VtxYZ()
495 static inline void G3CS_VtxDiff(GXDLInfo *info, fx16 x, fx16 y, fx16 z) in G3CS_VtxDiff() argument
498 SDK_MINMAX_ASSERT(y, (fx16)0xfe00, (fx16)0x1ff); in G3CS_VtxDiff()
501 G3CS_Direct1(info, G3OP_VTX_DIFF, GX_PACK_VTXDIFF_PARAM(x, y, z)); in G3CS_VtxDiff()
655 static inline void G3CS_LightVector(GXDLInfo *info, GXLightId lightID, fx16 x, fx16 y, fx16 z) in G3CS_LightVector() argument
659 SDK_MINMAX_ASSERT(y, -FX16_ONE, FX16_ONE - 1); in G3CS_LightVector()
662 G3CS_Direct1(info, G3OP_LIGHT_VECTOR, GX_PACK_LIGHTVECTOR_PARAM(lightID, x, y, z)); in G3CS_LightVector()
807 static inline void G3CS_PositionTest(GXDLInfo *info, fx16 x, fx16 y, fx16 z) in G3CS_PositionTest() argument
809 G3CS_Direct2(info, G3OP_POS_TEST, GX_FX16PAIR(x, y), (u32)(u16)z); in G3CS_PositionTest()
826 static inline void G3CS_VectorTest(GXDLInfo *info, fx16 x, fx16 y, fx16 z) in G3CS_VectorTest() argument
829 SDK_MINMAX_ASSERT(y, -FX16_ONE, FX16_ONE - 1); in G3CS_VectorTest()
832 G3CS_Direct1(info, G3OP_VEC_TEST, GX_PACK_VECTORTEST_PARAM(x, y, z)); in G3CS_VectorTest()