mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
0033797: Add Draco compression parameters to GLTF provider
Added Draco parameters struct to GLTF configuration node and set that information on the GLTF provider
This commit is contained in:
parent
2736652117
commit
cb52aa7247
@ -17,6 +17,7 @@
|
||||
#include <DE_ConfigurationNode.hxx>
|
||||
#include <RWMesh_CoordinateSystem.hxx>
|
||||
#include <RWGltf_WriterTrsfFormat.hxx>
|
||||
#include <RWGltf_DracoParameters.hxx>
|
||||
#include <RWMesh_NameFormat.hxx>
|
||||
|
||||
//! The purpose of this class is to configure the transfer process for glTF format
|
||||
@ -111,6 +112,7 @@ public:
|
||||
bool WriteEmbedTexturesInGlb = true; //!< Flag to write image textures into GLB file
|
||||
bool WriteMergeFaces = false; //!< Flag to merge faces within a single part
|
||||
bool WriteSplitIndices16 = false; //!< Flag to prefer keeping 16-bit indexes while merging face
|
||||
RWGltf_DracoParameters DracoParameters; //!< Struct with all draco parameters, default values on the corresponding header
|
||||
} InternalParameters;
|
||||
};
|
||||
|
||||
|
@ -166,6 +166,7 @@ bool RWGltf_Provider::Write(const TCollection_AsciiString& thePath,
|
||||
aWriter.SetToEmbedTexturesInGlb(aNode->InternalParameters.WriteEmbedTexturesInGlb);
|
||||
aWriter.SetMergeFaces(aNode->InternalParameters.WriteMergeFaces);
|
||||
aWriter.SetSplitIndices16(aNode->InternalParameters.WriteSplitIndices16);
|
||||
aWriter.SetCompressionParameters(aNode->InternalParameters.DracoParameters);
|
||||
if (!aWriter.Perform(theDocument, aFileInfo, theProgress))
|
||||
{
|
||||
Message::SendFail() << "Error in the RWGltf_Provider during writing the file " << thePath;
|
||||
|
Loading…
x
Reference in New Issue
Block a user