Commit 18ff52c0 authored by Rogerborg's avatar Rogerborg

Expose irr::core::IdentityMatrix using IRRLICHT_API so that it can be accessed...

Expose irr::core::IdentityMatrix using IRRLICHT_API so that it can be accessed from user apps on Windows.

git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@1725 dfc29bdd-3216-0410-991c-e03cc46cb475
parent 5a6eb22f
......@@ -1724,7 +1724,7 @@ namespace core
//! Typedef for f32 matrix
typedef CMatrix4<f32> matrix4;
//! global const identity matrix
extern const matrix4 IdentityMatrix;
IRRLICHT_API extern const matrix4 IdentityMatrix;
} // end namespace core
} // end namespace irr
......
......@@ -41,7 +41,7 @@ namespace irr
namespace core
{
const matrix4 IdentityMatrix(matrix4::EM4CONST_IDENTITY);
IRRLICHT_API const matrix4 IdentityMatrix(matrix4::EM4CONST_IDENTITY);
}
} // end namespace irr
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment