Marked all (probably) functions that take regular string instead of std::fs::path as deprecated

This commit is contained in:
Vladyslav Baranovskyi
2025-02-11 16:15:05 +02:00
parent a992b65c39
commit e976515d82
25 changed files with 44 additions and 44 deletions

View File

@@ -43,7 +43,7 @@ namespace OpenVulkano::Scene
{
}
void GenerateAtlas(const std::string& fontFile, const std::set<uint32_t>& charset,
const std::optional<std::string>& pngOutput = std::nullopt) override;
const std::optional<std::string>& pngOutput = std::nullopt) [[deprecated]] override;
void GenerateAtlas(const Array<char>& fontData, const std::set<uint32_t>& charset,
const std::optional<std::string>& pngOutput = std::nullopt) override;
private: