34 virtual AssetLoadBinaryResult LoadBinaryByPath(AssetType assetType,
const std::filesystem::path& path) = 0;
38 virtual AssetLoadTextResult LoadTextByPath(AssetType assetType,
const std::filesystem::path& path) = 0;
39 virtual AssetLoadTextResult LoadTextByAddress(AssetType assetType, std::string_view address) = 0;
42 virtual bool LoadShaderStageByPath(
43 const std::filesystem::path& path,
44 GraphicsAPI::ShaderStage shaderStage,
46 std::vector<char>& fileData
48 virtual bool LoadShaderStageByAddress(
49 std::string_view address,
50 GraphicsAPI::ShaderStage shaderStage,
52 std::vector<char>& fileData
54 virtual bool LoadShaderStageByUuid(
56 GraphicsAPI::ShaderStage shaderStage,
58 std::vector<char>& fileData
Definition AssetLoader.hpp:26