Build: fix missing commas.
parent
05524726c8
commit
68f88752b3
|
@ -45,13 +45,16 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
#ifndef ASSIMP_BUILD_NO_OPENGEX_IMPORTER
|
#ifndef ASSIMP_BUILD_NO_OPENGEX_IMPORTER
|
||||||
|
|
||||||
namespace Assimp {
|
namespace Assimp {
|
||||||
|
|
||||||
|
struct aiScene;
|
||||||
|
|
||||||
namespace OpenGEX {
|
namespace OpenGEX {
|
||||||
|
|
||||||
class OpenGEXExporter {
|
class OpenGEXExporter {
|
||||||
public:
|
public:
|
||||||
OpenGEXExporter();
|
OpenGEXExporter();
|
||||||
~OpenGEXExporter();
|
~OpenGEXExporter();
|
||||||
bool export( const char *filename, const aiScene* pScene );
|
bool exportScene( const char *filename, const aiScene* pScene );
|
||||||
};
|
};
|
||||||
} // Namespace openGEX
|
} // Namespace openGEX
|
||||||
} // Namespace Assimp
|
} // Namespace Assimp
|
||||||
|
|
|
@ -161,7 +161,7 @@ namespace AssimpView {
|
||||||
piLightmapTexture( NULL ),
|
piLightmapTexture( NULL ),
|
||||||
fOpacity(),
|
fOpacity(),
|
||||||
fShininess(),
|
fShininess(),
|
||||||
fSpecularStrength()
|
fSpecularStrength(),
|
||||||
twosided( false ),
|
twosided( false ),
|
||||||
pvOriginalNormals( NULL )
|
pvOriginalNormals( NULL )
|
||||||
{}
|
{}
|
||||||
|
|
Loading…
Reference in New Issue