| 30 | using namespace tgfx; |
| 31 | |
| 32 | std::string ToString(Frame frame) { |
| 33 | auto result = std::to_string(frame); |
| 34 | while (result.size() < 4) { |
| 35 | result = "0" + result; |
| 36 | } |
| 37 | return result; |
| 38 | } |
| 39 | |
| 40 | BackendTexture ToBackendTexture(const tgfx::GLTextureInfo& texture, int width, int height) { |
| 41 | GLTextureInfo glInfo = {}; |
no test coverage detected