Merge pull request #325 from emminizer/msvc2015_exportfix

Removed inappropriate use of OSG_EXPORT on DefaultIndirectCommandDrawArrays and De…
This commit is contained in:
OpenSceneGraph git repository 2017-08-25 14:48:42 +01:00 committed by GitHub
commit 1d24b2dc44

View File

@ -82,7 +82,7 @@ struct DrawArraysIndirectCommand
/// default implementation of IndirectCommandDrawArrays
/// DefaultIndirectCommandDrawArrays to be hosted on GPU
class OSG_EXPORT DefaultIndirectCommandDrawArrays: public IndirectCommandDrawArrays, public MixinVector<DrawArraysIndirectCommand>
class DefaultIndirectCommandDrawArrays: public IndirectCommandDrawArrays, public MixinVector<DrawArraysIndirectCommand>
{
public:
META_Object(osg,DefaultIndirectCommandDrawArrays)
@ -120,7 +120,7 @@ struct DrawElementsIndirectCommand
};
/// vector of DrawElementsCommand to be hosted on GPU
class OSG_EXPORT DefaultIndirectCommandDrawElements: public IndirectCommandDrawElements, public MixinVector<DrawElementsIndirectCommand>
class DefaultIndirectCommandDrawElements: public IndirectCommandDrawElements, public MixinVector<DrawElementsIndirectCommand>
{
public:
META_Object(osg,DefaultIndirectCommandDrawElements)