| 165 | |
| 166 | |
| 167 | void GuiChunkedBitmapCtrl::onRender(Point2I offset, const RectI &updateRect) |
| 168 | { |
| 169 | |
| 170 | if( mBitmap ) |
| 171 | { |
| 172 | RectI boundsRect( offset, getExtent()); |
| 173 | GFX->getDrawUtil()->drawBitmapStretch(mBitmap, boundsRect, GFXBitmapFlip_None, GFXTextureFilterLinear ); |
| 174 | } |
| 175 | |
| 176 | renderChildControls(offset, updateRect); |
| 177 | } |
nothing calls this directly
no test coverage detected