| 1335 | //----------------------------------------------------------------------------- |
| 1336 | |
| 1337 | void GuiScrollCtrl::drawScrollCorner(const Point2I &offset) |
| 1338 | { |
| 1339 | Point2I pos = offset; |
| 1340 | pos.x += mRightArrowRect.point.x + mRightArrowRect.extent.x - 1; |
| 1341 | pos.y += mRightArrowRect.point.y; |
| 1342 | GFX->getDrawUtil()->clearBitmapModulation(); |
| 1343 | GFX->getDrawUtil()->drawBitmapSR(mTextureObject, pos, mBitmapBounds[BmpStates * BmpResize]); |
| 1344 | } |
| 1345 | |
| 1346 | //----------------------------------------------------------------------------- |
| 1347 |
nothing calls this directly
no test coverage detected