Skip to content

Commit

Permalink
Add semicolons to code snippet in AssetLoader.h (#7717)
Browse files Browse the repository at this point in the history
  • Loading branch information
nimrod-gileadi authored Mar 27, 2024
1 parent 90d9009 commit a068143
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libs/gltfio/include/gltfio/AssetLoader.h
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,8 @@ struct AssetConfiguration {
*
* // Load buffers and textures from disk.
* ResourceLoader resourceLoader({engine, ".", true});
* resourceLoader.addTextureProvider("image/png", decoder)
* resourceLoader.addTextureProvider("image/jpeg", decoder)
* resourceLoader.addTextureProvider("image/png", decoder);
* resourceLoader.addTextureProvider("image/jpeg", decoder);
* resourceLoader.loadResources(asset);
*
* // Free the glTF hierarchy as it is no longer needed.
Expand Down

0 comments on commit a068143

Please sign in to comment.