From 4ba01f59684e9f06877eb630d83d03e4667dfee2 Mon Sep 17 00:00:00 2001 From: Arthur Brainville Date: Mon, 19 Mar 2018 20:06:59 +0100 Subject: [PATCH] Add a "not specified" option to the enum class for image formats Signed-off-by: Arthur Brainville (Ybalrid) --- examples/gltfutil/texture_dumper.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/gltfutil/texture_dumper.h b/examples/gltfutil/texture_dumper.h index 274888b..809b43a 100644 --- a/examples/gltfutil/texture_dumper.h +++ b/examples/gltfutil/texture_dumper.h @@ -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;