| 841 | } |
| 842 | |
| 843 | Display* createDisplay(int width, int height, int scale) override { |
| 844 | //LOG("Creating display %dx%d (scale = %d)\n", width, height, scale); |
| 845 | return new SDL2Display(width, height, scale); |
| 846 | } |
| 847 | |
| 848 | Surface* createSurface(int width, int height) override { |
| 849 | return new SDL2Surface(width, height, SDL2Surface::DeleteAndDestroy); |
no outgoing calls
no test coverage detected