Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
BC
public
external
Qt
QtQuick3D-Assimp
Commits
e9b17543
Commit
e9b17543
authored
11 years ago
by
Kim Kulling
Browse files
Options
Download
Plain Diff
Merge pull request #73 from paroj/master
fix include/ define in PostStepRegistry
parents
bebe13e1
8d80f563
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
code/PostStepRegistry.cpp
+2
-1
code/PostStepRegistry.cpp
with
2 additions
and
1 deletion
code/PostStepRegistry.cpp
+
2
−
1
View file @
e9b17543
...
...
@@ -47,6 +47,7 @@ corresponding preprocessor flag to selectively disable steps.
*/
#include
"AssimpPCH.h"
#include
"ProcessHelper.h"
#ifndef ASSIMP_BUILD_NO_CALCTANGENTS_PROCESS
# include "CalcTangentsProcess.h"
...
...
@@ -215,7 +216,7 @@ void GetPostProcessingStepInstanceList(std::vector< BaseProcess* >& out)
#if (!defined ASSIMP_BUILD_NO_FLIPWINDINGORDER_PROCESS)
out
.
push_back
(
new
FlipWindingOrderProcess
());
#endif
#if (!defined ASSIMP_BUILD_DEBONE_PROCESS)
#if (!defined ASSIMP_BUILD_
NO_
DEBONE_PROCESS)
out
.
push_back
(
new
DeboneProcess
());
#endif
#if (!defined ASSIMP_BUILD_NO_LIMITBONEWEIGHTS_PROCESS)
...
...
This diff is collapsed.
Click to expand it.
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets