From 2e456eeddce8355b1fab16c8d94a2f726d720dd3 Mon Sep 17 00:00:00 2001 From: Daniel Emminizer Date: Fri, 25 Aug 2017 08:55:25 -0400 Subject: [PATCH] No longer using OSG_EXPORT on DefaultIndirectCommandDrawArrays and DefaultIndirectCommandDrawElements, fixing compile errors in MSVC 2015. --- include/osg/PrimitiveSetIndirect | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/osg/PrimitiveSetIndirect b/include/osg/PrimitiveSetIndirect index 2ce5c1d8d..bf7b1a5ce 100644 --- a/include/osg/PrimitiveSetIndirect +++ b/include/osg/PrimitiveSetIndirect @@ -82,7 +82,7 @@ struct DrawArraysIndirectCommand /// default implementation of IndirectCommandDrawArrays /// DefaultIndirectCommandDrawArrays to be hosted on GPU -class OSG_EXPORT DefaultIndirectCommandDrawArrays: public IndirectCommandDrawArrays, public MixinVector +class DefaultIndirectCommandDrawArrays: public IndirectCommandDrawArrays, public MixinVector { 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 +class DefaultIndirectCommandDrawElements: public IndirectCommandDrawElements, public MixinVector { public: META_Object(osg,DefaultIndirectCommandDrawElements)