Add a "not specified" option to the enum class for image formats

Signed-off-by: Arthur Brainville (Ybalrid) <ybalrid@ybalrid.info>
This commit is contained in:
Arthur Brainville 2018-03-19 20:06:59 +01:00
parent 68174a3fb3
commit 4ba01f5968
No known key found for this signature in database
GPG Key ID: BC05C4812A06BCF3

View File

@ -7,7 +7,7 @@
namespace gltfutil {
class texture_dumper {
public:
enum class texture_output_format { png, bmp, tga };
enum class texture_output_format { png, bmp, tga, not_specified };
private:
const tinygltf::Model& model;