tinygltf icon indicating copy to clipboard operation
tinygltf copied to clipboard

Header only C++11 tiny glTF 2.0 library

Results 55 tinygltf issues
Sort by recently updated
recently updated
newest added

**Describe the issue** The function `WriteGltfSceneToStream` returns true unconditionally. I believe it is intended to return false when writing the file fails. **To Reproduce** - OS: windows 10 - Compiler,...

enhancement

**Describe the issue** glTF format is getting common file format for NTF and Metaverse usecase. For such usecases, embedding audio data in 3D data is important but glTF 2.0 spec...

enhancement

**Describe the issue** At these locations, support for BINARY_TYPE is missing https://github.com/syoyo/tinygltf/blob/master/tiny_gltf.h#L6442 https://github.com/syoyo/tinygltf/blob/master/tiny_gltf.h#L6486 This case needs handling or tiny_gltf fails to output BINARY_TYPE values. ```c++ case BINARY_TYPE: // TODO //...

enhancement

**Describe the issue** Currently, `WriteGltfSceneToStream` always embeds images and buffers into the output stream, which is not very flexible. In our usage scenario we would like to write images to...

enhancement

https://github.com/DeanoC/tiny_ktx

enhancement
glTF 2.0
extension

It shouldn't be necessary to load the image files and separate binary buffer when loading the glTF asset – most actions and inspections don't require that data and we only...

enhancement

**Describe the issue** I think this is left over from #229. Currently the issue is this: Whenever a buffer is empty, with tinygltf i can't serialize it into file and...

@syoyo Strings replaced by characters where possible, initializing object variables in the constructor, default constructors and destructors, using std::move, and deleting unused code.

trivial

This source file implements draco encoding, https://github.com/GPUOpen-Tools/Compressonator/blob/master/Compressonator/Applications/_Plugins/Common/gltf/tiny_gltf2.h what is the relationship between these two projects? is it possible to integrate a similar functionality in this project?

enhancement
extension

**Issue description** I'm implementing glTF exporter with using tinygltf. I need to make tinygltf write each image to separate png files. On exporting models png files are not created. **To...

enhancement