| 322 | } |
| 323 | |
| 324 | inline U8* GBitmap::getAddress(const S32 in_x, const S32 in_y, const U32 mipLevel) |
| 325 | { |
| 326 | return (getWritableBits(mipLevel) + ((in_y * getWidth(mipLevel)) + in_x) * mBytesPerPixel); |
| 327 | } |
| 328 | |
| 329 | inline const U8* GBitmap::getAddress(const S32 in_x, const S32 in_y, const U32 mipLevel) const |
| 330 | { |
no test coverage detected