integrated DropFaceNormals process (cmake, poststepregistry)

pull/2194/head
d 2018-10-29 16:26:50 +01:00
parent 95c0deaaff
commit 6d1dee606a
3 changed files with 6 additions and 0 deletions

View File

@ -557,6 +557,8 @@ SET( PostProcessing_SRCS
FindInvalidDataProcess.h FindInvalidDataProcess.h
FixNormalsStep.cpp FixNormalsStep.cpp
FixNormalsStep.h FixNormalsStep.h
DropFaceNormalsProcess.cpp
DropFaceNormalsProcess.h
GenFaceNormalsProcess.cpp GenFaceNormalsProcess.cpp
GenFaceNormalsProcess.h GenFaceNormalsProcess.h
GenVertexNormalsProcess.cpp GenVertexNormalsProcess.cpp

View File

@ -62,6 +62,9 @@ corresponding preprocessor flag to selectively disable steps.
#ifndef ASSIMP_BUILD_NO_TRIANGULATE_PROCESS #ifndef ASSIMP_BUILD_NO_TRIANGULATE_PROCESS
# include "TriangulateProcess.h" # include "TriangulateProcess.h"
#endif #endif
#ifndef ASSIMP_BUILD_NO_DROPFACENORMALS_PROCESS
# include "DropFaceNormalsProcess.h"
#endif
#ifndef ASSIMP_BUILD_NO_GENFACENORMALS_PROCESS #ifndef ASSIMP_BUILD_NO_GENFACENORMALS_PROCESS
# include "GenFaceNormalsProcess.h" # include "GenFaceNormalsProcess.h"
#endif #endif

View File

@ -97,6 +97,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
* CALCTANGENTS * CALCTANGENTS
* JOINVERTICES * JOINVERTICES
* TRIANGULATE * TRIANGULATE
* DROPFACENORMALS
* GENFACENORMALS * GENFACENORMALS
* GENVERTEXNORMALS * GENVERTEXNORMALS
* REMOVEVC * REMOVEVC