| 414 | } |
| 415 | |
| 416 | void J2DPictureEx::draw(f32 p1, f32 p2, u8 index, bool p4, bool p5, bool p6) |
| 417 | { |
| 418 | if (mMaterial && mMaterial->mTevBlock && mIsVisible && index < mMaterial->mTexGenBlock.mTexGenNum) { |
| 419 | JUTTexture* texture = mMaterial->mTevBlock->getTexture(index); |
| 420 | if (texture) { |
| 421 | draw(p1, p2, texture->getWidth(), texture->getHeight(), p4, p5, p6); |
| 422 | } |
| 423 | } |
| 424 | } |
| 425 | |
| 426 | void J2DPictureEx::draw(f32 x, f32 y, f32 width, f32 height, bool p5, bool p6, bool p7) |
| 427 | { |
nothing calls this directly
no test coverage detected