Whitespace tweak.

This commit is contained in:
Par Winzell 2019-04-07 17:23:32 -07:00
parent e5078a50b7
commit 387f5df782
1 changed files with 55 additions and 55 deletions

View File

@ -20,8 +20,8 @@
#define FBX2GLTF_VERSION std::string("0.9.6") #define FBX2GLTF_VERSION std::string("0.9.6")
#include <fmt/printf.h>
#include <fbxsdk.h> #include <fbxsdk.h>
#include <fmt/printf.h>
#if defined(_WIN32) #if defined(_WIN32)
// this is defined in fbxmath.h // this is defined in fbxmath.h
@ -31,8 +31,8 @@
#include "mathfu.hpp" #include "mathfu.hpp"
// give all modules access to our tweaked JSON // give all modules access to our tweaked JSON
#include <json.hpp>
#include <fifo_map.hpp> #include <fifo_map.hpp>
#include <json.hpp>
template <class K, class V, class ignore, class A> template <class K, class V, class ignore, class A>
using workaround_fifo_map = nlohmann::fifo_map<K, V, nlohmann::fifo_map_compare<K>, A>; using workaround_fifo_map = nlohmann::fifo_map<K, V, nlohmann::fifo_map_compare<K>, A>;
@ -51,7 +51,8 @@ inline uint32_t to_uint32(size_t n) {
} }
/** /**
* The variuos situations in which the user may wish for us to (re-)compute normals for our vertices. * The variuos situations in which the user may wish for us to (re-)compute normals for our
* vertices.
*/ */
enum class ComputeNormalsOption { enum class ComputeNormalsOption {
NEVER, // do not ever compute any normals (results in broken glTF for some sources) NEVER, // do not ever compute any normals (results in broken glTF for some sources)
@ -69,8 +70,7 @@ enum class UseLongIndicesOptions {
/** /**
* User-supplied options that dictate the nature of the glTF being generated. * User-supplied options that dictate the nature of the glTF being generated.
*/ */
struct GltfOptions struct GltfOptions {
{
/** /**
* If negative, disabled. Otherwise, a bitfield of RawVertexAttributes that * If negative, disabled. Otherwise, a bitfield of RawVertexAttributes that
* specify the largest set of attributes that'll ever be kept for a vertex. * specify the largest set of attributes that'll ever be kept for a vertex.