diff --git a/src/gltf/Raw2Gltf.hpp b/src/gltf/Raw2Gltf.hpp index d1cef7f..305b437 100644 --- a/src/gltf/Raw2Gltf.hpp +++ b/src/gltf/Raw2Gltf.hpp @@ -153,20 +153,6 @@ struct AttributeDefinition { glType(_glType), dracoAttribute(draco::GeometryAttribute::INVALID), dracoComponentType(draco::DataType::DT_INVALID) {} - - AttributeDefinition( - const std::string gltfName, - const T RawVertex::*rawAttributeIx, - const GLType& _glType, - const draco::GeometryAttribute::Type dracoAttribute, - const draco::DataType dracoComponentType, - const int arrayOffset) - : gltfName(gltfName), - rawAttributeIx(rawAttributeIx), - glType(_glType), - dracoAttribute(dracoAttribute), - dracoComponentType(dracoComponentType), - arrayOffset(arrayOffset){} }; template