| 38 | } |
| 39 | |
| 40 | BackendTexture ToBackendTexture(const tgfx::GLTextureInfo& texture, int width, int height) { |
| 41 | GLTextureInfo glInfo = {}; |
| 42 | glInfo.id = texture.id; |
| 43 | glInfo.target = texture.target; |
| 44 | glInfo.format = texture.format; |
| 45 | return {glInfo, width, height}; |
| 46 | } |
| 47 | |
| 48 | std::vector<std::string> GetAllPAGFiles(const std::string& path) { |
| 49 | return Directory::FindFiles(ProjectPath::Absolute(path), ".pag"); |
no outgoing calls
no test coverage detected