| 42 | inline const std::vector<std::string>& GetFavorites() { return m_favorites; } |
| 43 | |
| 44 | inline void SetZoom(float z) { |
| 45 | m_zoom = std::min<float>(25.0f, std::max<float>(1.0f, z)); |
| 46 | m_refreshIconPreview(); |
| 47 | } |
| 48 | inline float GetZoom() { return m_zoom; } |
| 49 | |
| 50 | std::function<void*(uint8_t*, int, int, char)> CreateTexture; // char -> fmt -> { 0 = BGRA, 1 = RGBA } |
nothing calls this directly
no outgoing calls
no test coverage detected