| 159 | } |
| 160 | |
| 161 | void xQuickCullForBox(xQCControl* ctrl, xQCData* q, const xBox* box) |
| 162 | { |
| 163 | xQCData a; |
| 164 | xQuickCullCellForVec(ctrl, &a, &box->lower); |
| 165 | |
| 166 | xQCData b; |
| 167 | xQuickCullCellForVec(ctrl, &b, &box->upper); |
| 168 | |
| 169 | xQuickCullCellMerge(q, &a, &b); |
| 170 | } |
| 171 | |
| 172 | void xQuickCullForOBB(xQCControl* ctrl, xQCData* q, const xBox* b, const xMat4x3* m) |
| 173 | { |
no test coverage detected