Whitespace tweak.
This commit is contained in:
parent
e5078a50b7
commit
387f5df782
|
@ -20,8 +20,8 @@
|
|||
|
||||
#define FBX2GLTF_VERSION std::string("0.9.6")
|
||||
|
||||
#include <fmt/printf.h>
|
||||
#include <fbxsdk.h>
|
||||
#include <fmt/printf.h>
|
||||
|
||||
#if defined(_WIN32)
|
||||
// this is defined in fbxmath.h
|
||||
|
@ -31,8 +31,8 @@
|
|||
#include "mathfu.hpp"
|
||||
|
||||
// give all modules access to our tweaked JSON
|
||||
#include <json.hpp>
|
||||
#include <fifo_map.hpp>
|
||||
#include <json.hpp>
|
||||
|
||||
template <class K, class V, class ignore, class 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 {
|
||||
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.
|
||||
*/
|
||||
struct GltfOptions
|
||||
{
|
||||
struct GltfOptions {
|
||||
/**
|
||||
* If negative, disabled. Otherwise, a bitfield of RawVertexAttributes that
|
||||
* specify the largest set of attributes that'll ever be kept for a vertex.
|
||||
|
|
Loading…
Reference in New Issue