added mesh rendering
This commit is contained in:
@@ -4,6 +4,16 @@
|
||||
#include "stdint.h"
|
||||
#include "stddef.h"
|
||||
|
||||
#ifdef __WIN32__
|
||||
#define DLL_EXPORT extern "C" __declspec(dllexport)
|
||||
#define DLL_IMPORT extern "C" __declspec(dllimport)
|
||||
|
||||
#define DLL_CLASS_EXPORT __declspec(dllexport)
|
||||
#define DLL_CLASS_IMPORT __declspec(dllimport)
|
||||
|
||||
#define DLL_GLOBAL_EXPORT extern __declspec(dllexport)
|
||||
#define DLL_GLOBAL_IMPORT extern __declspec(dllimport)
|
||||
#else
|
||||
#define DLL_EXPORT extern "C" __attribute__ ((visibility("default")))
|
||||
#define DLL_IMPORT extern "C"
|
||||
|
||||
@@ -12,6 +22,7 @@
|
||||
|
||||
#define DLL_GLOBAL_EXPORT extern __attribute ((visibility("default")))
|
||||
#define DLL_GLOBAL_IMPORT extern
|
||||
#endif
|
||||
|
||||
#ifdef TIER0_STATIC
|
||||
|
||||
|
||||
Reference in New Issue
Block a user