| 232 | } |
| 233 | |
| 234 | void FontRenderBatcher::init( GFont *font, U32 n ) |
| 235 | { |
| 236 | // Clear out batched results |
| 237 | dMemset(mSheets.address(), 0, mSheets.memSize()); |
| 238 | mSheets.clear(); |
| 239 | mStorage.freeBlocks(true); |
| 240 | |
| 241 | mFont = font; |
| 242 | mLength = n; |
| 243 | } |
nothing calls this directly
no test coverage detected