| 533 | } |
| 534 | |
| 535 | void J2DPictureEx::drawOut(f32 p1, f32 p2, f32 p3, f32 p4, f32 p5, f32 p6) |
| 536 | { |
| 537 | if (mMaterial && mMaterial->mTevBlock && mIsVisible) { |
| 538 | JUTTexture* texture = mMaterial->mTevBlock->getTexture(0); |
| 539 | if (texture) { |
| 540 | drawOut(JGeometry::TBox2f(p1, p2, p1 + p3, p2 + p4), |
| 541 | JGeometry::TBox2f(p5, p6, p5 + texture->getWidth(), p6 + texture->getHeight())); |
| 542 | } |
| 543 | } |
| 544 | } |
| 545 | |
| 546 | void J2DPictureEx::drawOut(const JGeometry::TBox2<f32>& boundBox, const JGeometry::TBox2<f32>& texBox) |
| 547 | { |
nothing calls this directly
no test coverage detected