14 void InitializeDirectory();
15 virtual AssetLoadBinaryResult LoadBinaryByPath(AssetType assetType,
const std::filesystem::path& path)
override;
16 virtual AssetLoadBinaryResult LoadBinaryByAddress(AssetType assetType, std::string_view address)
override;
19 virtual AssetLoadTextResult LoadTextByPath(AssetType assetType,
const std::filesystem::path& path)
override;
20 virtual AssetLoadTextResult LoadTextByAddress(AssetType assetType, std::string_view address)
override;
23 virtual bool LoadShaderStageByPath(
24 const std::filesystem::path& path,
25 GraphicsAPI::ShaderStage shaderStage,
27 std::vector<char>& fileData
29 virtual bool LoadShaderStageByAddress(
30 std::string_view address,
31 const GraphicsAPI::ShaderStage shaderStage,
33 std::vector<char>& fileData
35 virtual bool LoadShaderStageByUuid(
37 GraphicsAPI::ShaderStage shaderStage,
39 std::vector<char>& fileData
46 uint16_t lastBufferIndex = UINT16_MAX;
Definition AssetLoader.hpp:26