| 251 | } |
| 252 | |
| 253 | static void ReleaseRT(RenderTarget& rt) |
| 254 | { |
| 255 | if (rt.bits != nullptr) |
| 256 | delete[] rt.bits; |
| 257 | rt.bits = nullptr; |
| 258 | rt.width = 0; |
| 259 | rt.height = 0; |
| 260 | } |
| 261 | |
| 262 | static Viewport GetGiantViewport(int32_t rotation, ZoomLevel zoom) |
| 263 | { |
no outgoing calls
no test coverage detected