| 385 | } |
| 386 | |
| 387 | Texture2D* TextureCache::getWhiteTexture() |
| 388 | { |
| 389 | constexpr std::string_view key = "/white-texture"sv; |
| 390 | return getWhiteTexture(key, 0xFF); |
| 391 | } |
| 392 | |
| 393 | Texture2D* TextureCache::getWhiteTexture(std::string_view key, uint8_t luma) |
| 394 | { |
no test coverage detected