Skip to content

Commit 6da931e

Browse files
committed
Use NBL_API2 to fix symbols not being exported
1 parent 216b7db commit 6da931e

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

include/nbl/asset/IAsset.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class IAssetManager;
3939
@see IReferenceCounted
4040
*/
4141

42-
class NBL_API IAsset : virtual public core::IReferenceCounted
42+
class NBL_API2 IAsset : virtual public core::IReferenceCounted
4343
{
4444
public:
4545
enum E_MUTABILITY : uint32_t

include/nbl/video/IGPUFence.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class NBL_API IGPUFence : public core::IReferenceCounted, public IBackendObject
3939
};
4040

4141

42-
class NBL_API GPUEventWrapper : public core::Uncopyable
42+
class NBL_API2 GPUEventWrapper : public core::Uncopyable
4343
{
4444
protected:
4545
ILogicalDevice* mDevice;

include/nbl/video/ILogicalDevice.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ namespace nbl::video
3737
class IDescriptorPool;
3838
class IPhysicalDevice;
3939

40-
class NBL_API ILogicalDevice : public core::IReferenceCounted, public IDeviceMemoryAllocator
40+
class NBL_API2 ILogicalDevice : public core::IReferenceCounted, public IDeviceMemoryAllocator
4141
{
4242
public:
4343
struct SQueueCreationParams

include/nbl/video/utilities/CPropertyPoolHandler.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ static_assert(NBL_BUILTIN_PROPERTY_POOL_INVALID==IPropertyPool::invalid);
2525

2626
// property pool factory is externally synchronized
2727
// TODO: could rename to CSparseStreamingSystem/CSparseStreamingHandler
28-
class NBL_API CPropertyPoolHandler final : public core::IReferenceCounted, public core::Unmovable
28+
class NBL_API2 CPropertyPoolHandler final : public core::IReferenceCounted, public core::Unmovable
2929
{
3030
public:
3131
//

include/nbl/video/utilities/IUtilities.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
namespace nbl::video
1616
{
1717

18-
class NBL_API IUtilities : public core::IReferenceCounted
18+
class NBL_API2 IUtilities : public core::IReferenceCounted
1919
{
2020
protected:
2121
constexpr static inline uint32_t maxStreamingBufferAllocationAlignment = 64u*1024u; // if you need larger alignments then you're not right in the head

0 commit comments

Comments
 (0)