10 virtual AssetLoadBinaryResult LoadBinaryByPath(AssetType assetType,
const std::filesystem::path& path)
override;
11 virtual AssetLoadBinaryResult LoadBinaryByAddress(AssetType assetType, std::string_view address)
override;
14 virtual AssetLoadTextResult LoadTextByPath(AssetType assetType,
const std::filesystem::path& path)
override;
15 virtual AssetLoadTextResult LoadTextByAddress(AssetType assetType, std::string_view address)
override;
18 virtual bool LoadShaderStageByPath(
19 const std::filesystem::path& path,
20 GraphicsAPI::ShaderStage shaderStage,
22 std::vector<char>& fileData
24 virtual bool LoadShaderStageByAddress(
25 std::string_view address,
26 GraphicsAPI::ShaderStage shaderStage,
28 std::vector<char>& fileData
30 virtual bool LoadShaderStageByUuid(
32 GraphicsAPI::ShaderStage shaderStage,
34 std::vector<char>& fileData
Definition AssetLoader.hpp:26