diff --git a/modules/asset_loader/include/vkcv/asset/asset_loader.hpp b/modules/asset_loader/include/vkcv/asset/asset_loader.hpp index 2b14ccc0222233b9df499ccfd8b70b9a5b33de0c..fc35b652bdef6e01e922c4f3e583f8bad3a4de72 100644 --- a/modules/asset_loader/include/vkcv/asset/asset_loader.hpp +++ b/modules/asset_loader/include/vkcv/asset/asset_loader.hpp @@ -269,6 +269,8 @@ struct Mesh { * initialized and all information is final, except for the missing binary * data. This means that indices to vectors will remain valid even when the * shallow scene struct is filled with data by loadMesh(). + * Note that for URIs only (local) filesystem paths are supported, no + * URLs using network protocols etc. * * @param path must be the path to a glTF- or glb-file. * @param scene is a reference to a Scene struct that will be filled with the @@ -300,6 +302,8 @@ struct Mesh { */ int loadScene(const std::filesystem::path &path, Scene &scene); + /** + * TODO document + */ Texture loadTexture(const std::filesystem::path& path); - } diff --git a/modules/asset_loader/src/vkcv/asset/asset_loader.cpp b/modules/asset_loader/src/vkcv/asset/asset_loader.cpp index 56ae8f5c7c6243c0d89b1b54891204f7e1e84498..5ce21ec8d884aaaa728fb87f66377083be1494fc 100644 --- a/modules/asset_loader/src/vkcv/asset/asset_loader.cpp +++ b/modules/asset_loader/src/vkcv/asset/asset_loader.cpp @@ -342,7 +342,8 @@ namespace vkcv::asset { } /** - * TODO document + * Initializes vertex groups of a Mesh, including copying the data to + * index- and vertex-buffers. */ static int loadVertexGroups(const fx::gltf::Mesh &objectMesh, const fx::gltf::Document &sceneObjects,