Fix: Build issue with MSVC
draw_common.h was included in a C++ file leading to the linker looking for the decorated name for `G_draw` which lead to a linker error. adding an extern "C" for C++ fixes the issue.
This commit is contained in:
@@ -9,6 +9,10 @@
|
||||
|
||||
#include "draw_common_shader_shared.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
struct DRWShadingGroup;
|
||||
struct FluidModifierData;
|
||||
struct GPUMaterial;
|
||||
@@ -92,3 +96,7 @@ struct DRW_Global {
|
||||
struct GPUUniformBuf *view_ubo;
|
||||
};
|
||||
extern struct DRW_Global G_draw;
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user