| 102 | } |
| 103 | |
| 104 | static void SubDivTriangle(u8 depth, u8 i, f32 (*data)[3], u8 (*ndx)[3]) |
| 105 | { |
| 106 | f32* x0 = data[ndx[i][0]]; |
| 107 | f32* x1 = data[ndx[i][1]]; |
| 108 | f32* x2 = data[ndx[i][2]]; |
| 109 | |
| 110 | Subdivide(depth, x0, x1, x2); |
| 111 | } |
| 112 | |
| 113 | void GXDrawCylinder(u8 numEdges) |
| 114 | { |
no test coverage detected