| 259 | } |
| 260 | |
| 261 | ImageFormat GetImageFormatFromPath(std::string_view path) |
| 262 | { |
| 263 | if (String::endsWith(path, ".png", true)) |
| 264 | { |
| 265 | return ImageFormat::png; |
| 266 | } |
| 267 | |
| 268 | if (String::endsWith(path, ".bmp", true)) |
| 269 | { |
| 270 | return ImageFormat::bitmap; |
| 271 | } |
| 272 | |
| 273 | return ImageFormat::unknown; |
| 274 | } |
| 275 | |
| 276 | static ImageReaderFunc GetReader(ImageFormat format) |
| 277 | { |
no test coverage detected