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 386de3b7fb
commit 15dee6471e

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;