| 420 | } |
| 421 | |
| 422 | void xModelRender(xModelInstance* model) |
| 423 | { |
| 424 | while (model != NULL) |
| 425 | { |
| 426 | if (xModelBucketEnabled) |
| 427 | { |
| 428 | xModelBucket_Add(model); |
| 429 | } |
| 430 | else |
| 431 | { |
| 432 | xModelRenderSingle(model); |
| 433 | } |
| 434 | model = model->Next; |
| 435 | } |
| 436 | } |
| 437 | |
| 438 | void xModelRender2D(const xModelInstance& model, const basic_rect<F32>& r, const xVec3& from, |
| 439 | const xVec3& to) |
no test coverage detected