| 846 | } |
| 847 | |
| 848 | Surface* createSurface(int width, int height) override { |
| 849 | return new SDL2Surface(width, height, SDL2Surface::DeleteAndDestroy); |
| 850 | } |
| 851 | |
| 852 | Surface* createRgbaSurface(int width, int height) override { |
| 853 | return new SDL2Surface(width, height, 32, SDL2Surface::DeleteAndDestroy); |
no outgoing calls
no test coverage detected