| 710 | } |
| 711 | |
| 712 | JUTTexture* J2DWindowEx::getFrameTexture(u8 frameMaterialIndex, u8 textureIndex) const |
| 713 | { |
| 714 | J2DMaterial* material = getFrameMaterial(frameMaterialIndex); |
| 715 | if (material != nullptr && material->mTevBlock != nullptr) { |
| 716 | return material->mTevBlock->getTexture(textureIndex); |
| 717 | } |
| 718 | return nullptr; |
| 719 | } |
| 720 | |
| 721 | JUTTexture* J2DWindowEx::getContentsTexture(u8 textureIndex) const |
| 722 | { |
nothing calls this directly
no test coverage detected