Fixed locale problems with cgltf.h

This commit is contained in:
ksuprynowicz 2024-05-22 02:50:28 +02:00
parent 8661e8a858
commit 4b9ddbc260

View file

@ -14,6 +14,19 @@
#ifndef hifi_GLTFSerializer_h
#define hifi_GLTFSerializer_h
#include <sstream>
inline float atof_locale_independent(char *str) {
//TODO: Once we have C++17 we can use std::from_chars
std::istringstream streamToParse(str);
streamToParse.imbue(std::locale("C"));
float value = 0.0f;
streamToParse >> value;
return value;
}
#define CGLTF_ATOF(str) atof_locale_independent(str)
#include "cgltf.h"
#include <memory.h>