Remove dead code causing compilation issues.

This commit is contained in:
Henrik Halen 2019-06-26 16:04:54 -07:00
parent 8aebb1eb2a
commit 530a40d0e1
1 changed files with 0 additions and 14 deletions

View File

@ -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 <class T>