| 32 | } |
| 33 | |
| 34 | S32 xPartitionGetTrueIdx(_tagPartition* part, S32 x_spaces, S32 y_spaces, S32 z_spaces) |
| 35 | { |
| 36 | S32 idx = (y_spaces * (part->total_x * part->total_z)); |
| 37 | idx += part->total_x * z_spaces; |
| 38 | idx += x_spaces; |
| 39 | return idx; |
| 40 | } |
| 41 | |
| 42 | void xPartitionVolume(_tagPartition* part, xVolume* volume, S32 x_spaces, S32 y_spaces, |
| 43 | S32 z_spaces) |
no outgoing calls
no test coverage detected