| 42 | } |
| 43 | |
| 44 | void xQuickCullForBound(xQCControl* ctrl, xQCData* q, const xBound* b) |
| 45 | { |
| 46 | if (b->type == 1) |
| 47 | { |
| 48 | xQuickCullForSphere(ctrl, q, &b->sph); |
| 49 | } |
| 50 | else if (b->type == 2) |
| 51 | { |
| 52 | xQuickCullForBox(ctrl, q, &b->box.box); |
| 53 | } |
| 54 | else if (b->type == 4) |
| 55 | { |
| 56 | xQuickCullForOBB(ctrl, q, &b->box.box, b->mat); |
| 57 | } |
| 58 | } |
| 59 | |
| 60 | static void xQuickCullCellForVec(xQCControl* ctrl, xQCData* c, const xVec3* v) |
| 61 | { |
nothing calls this directly
no test coverage detected