| 173 | } |
| 174 | |
| 175 | void drawingWithColor(u32 color) |
| 176 | { |
| 177 | C3D_TexEnv* env = C3D_GetTexEnv(0); |
| 178 | C3D_TexEnvSrc(env, C3D_Both, GPU_CONSTANT, 0, 0); |
| 179 | C3D_TexEnvFunc(env, C3D_Both, GPU_REPLACE); |
| 180 | C3D_TexEnvColor(env, color); |
| 181 | } |
| 182 | |
| 183 | void drawingWithTex(C3D_Tex* tex, u32 color) |
| 184 | { |
no outgoing calls
no test coverage detected