Lines Matching refs:z
74 static void G3BS_Scale(GXDLInfo *info, fx32 x, fx32 y, fx32 z);
75 static void G3BS_Translate(GXDLInfo *info, fx32 x, fx32 y, fx32 z);
77 static void G3BS_Normal(GXDLInfo *info, fx16 x, fx16 y, fx16 z);
79 static void G3BS_Vtx(GXDLInfo *info, fx16 x, fx16 y, fx16 z);
80 static void G3BS_Vtx10(GXDLInfo *info, fx16 x, fx16 y, fx16 z);
82 static void G3BS_VtxXZ(GXDLInfo *info, fx16 x, fx16 z);
83 static void G3BS_VtxYZ(GXDLInfo *info, fx16 y, fx16 z);
84 static void G3BS_VtxDiff(GXDLInfo *info, fx16 x, fx16 y, fx16 z);
98 static void G3BS_LightVector(GXDLInfo *info, GXLightId lightID, fx16 x, fx16 y, fx16 z);
106 static void G3BS_PositionTest(GXDLInfo *info, fx16 x, fx16 y, fx16 z);
107 static void G3BS_VectorTest(GXDLInfo *info, fx16 x, fx16 y, fx16 z);
130 void G3B_Scale(GXDLInfo *info, fx32 x, fx32 y, fx32 z);
131 void G3B_Translate(GXDLInfo *info, fx32 x, fx32 y, fx32 z);
134 void G3B_Normal(GXDLInfo *info, fx16 x, fx16 y, fx16 z);
136 void G3B_Vtx(GXDLInfo *info, fx16 x, fx16 y, fx16 z);
137 void G3B_Vtx10(GXDLInfo *info, fx16 x, fx16 y, fx16 z);
139 void G3B_VtxXZ(GXDLInfo *info, fx16 x, fx16 z);
140 void G3B_VtxYZ(GXDLInfo *info, fx16 y, fx16 z);
141 void G3B_VtxDiff(GXDLInfo *info, fx16 x, fx16 y, fx16 z);
153 void G3B_LightVector(GXDLInfo *info, GXLightId lightID, fx16 x, fx16 y, fx16 z);
161 void G3B_PositionTest(GXDLInfo *info, fx16 x, fx16 y, fx16 z);
162 void G3B_VectorTest(GXDLInfo *info, fx16 x, fx16 y, fx16 z);
410 static inline void G3BS_Scale(GXDLInfo *info, fx32 x, fx32 y, fx32 z) in G3BS_Scale() argument
412 G3BS_Direct3(info, G3OP_MTX_SCALE, (u32)x, (u32)y, (u32)z); in G3BS_Scale()
429 static inline void G3BS_Translate(GXDLInfo *info, fx32 x, fx32 y, fx32 z) in G3BS_Translate() argument
431 G3BS_Direct3(info, G3OP_MTX_TRANS, (u32)x, (u32)y, (u32)z); in G3BS_Translate()
464 static inline void G3BS_Normal(GXDLInfo *info, fx16 x, fx16 y, fx16 z) in G3BS_Normal() argument
468 SDK_MINMAX_ASSERT(z, -FX16_ONE, FX16_ONE - 1); in G3BS_Normal()
470 G3BS_Direct1(info, G3OP_NORMAL, GX_PACK_NORMAL_PARAM(x, y, z)); in G3BS_Normal()
506 static inline void G3BS_Vtx(GXDLInfo *info, fx16 x, fx16 y, fx16 z) in G3BS_Vtx() argument
508 G3BS_Direct2(info, G3OP_VTX_16, GX_FX16PAIR(x, y), (u32)(u16)z); in G3BS_Vtx()
524 static inline void G3BS_Vtx10(GXDLInfo *info, fx16 x, fx16 y, fx16 z) in G3BS_Vtx10() argument
526 G3BS_Direct1(info, G3OP_VTX_10, GX_PACK_VTX10_PARAM(x, y, z)); in G3BS_Vtx10()
560 static inline void G3BS_VtxXZ(GXDLInfo *info, fx16 x, fx16 z) in G3BS_VtxXZ() argument
562 G3BS_Direct1(info, G3OP_VTX_XZ, GX_PACK_VTXXZ_PARAM(x, z)); in G3BS_VtxXZ()
578 static inline void G3BS_VtxYZ(GXDLInfo *info, fx16 y, fx16 z) in G3BS_VtxYZ() argument
580 G3BS_Direct1(info, G3OP_VTX_YZ, GX_PACK_VTXYZ_PARAM(y, z)); in G3BS_VtxYZ()
597 static inline void G3BS_VtxDiff(GXDLInfo *info, fx16 x, fx16 y, fx16 z) in G3BS_VtxDiff() argument
601 SDK_MINMAX_ASSERT(z, (fx16)0xfe00, (fx16)0x1ff); in G3BS_VtxDiff()
603 G3BS_Direct1(info, G3OP_VTX_DIFF, GX_PACK_VTXDIFF_PARAM(x, y, z)); in G3BS_VtxDiff()
757 static inline void G3BS_LightVector(GXDLInfo *info, GXLightId lightID, fx16 x, fx16 y, fx16 z) in G3BS_LightVector() argument
762 SDK_MINMAX_ASSERT(z, -FX16_ONE, FX16_ONE - 1); in G3BS_LightVector()
764 G3BS_Direct1(info, G3OP_LIGHT_VECTOR, GX_PACK_LIGHTVECTOR_PARAM(lightID, x, y, z)); in G3BS_LightVector()
909 static inline void G3BS_PositionTest(GXDLInfo *info, fx16 x, fx16 y, fx16 z) in G3BS_PositionTest() argument
911 G3BS_Direct2(info, G3OP_POS_TEST, GX_FX16PAIR(x, y), (u32)(u16)z); in G3BS_PositionTest()
928 static inline void G3BS_VectorTest(GXDLInfo *info, fx16 x, fx16 y, fx16 z) in G3BS_VectorTest() argument
932 SDK_MINMAX_ASSERT(z, -FX16_ONE, FX16_ONE - 1); in G3BS_VectorTest()
934 G3BS_Direct1(info, G3OP_VEC_TEST, GX_PACK_VECTORTEST_PARAM(x, y, z)); in G3BS_VectorTest()