Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacques Lucke <jacques@blender.org>2020-03-02 17:28:47 +0300
committerJacques Lucke <jacques@blender.org>2020-03-02 17:29:09 +0300
commitf48b46860b57b7caf3d804267952cd43ecec089a (patch)
tree711d700d0d5240d499ef055ff168d65de5472af0 /source/blender/gpu/GPU_batch_presets.h
parent360443a48346dc7c22fc6627849515da490b6e7b (diff)
Cleanup: make remaining gpu headers work in C++
Diffstat (limited to 'source/blender/gpu/GPU_batch_presets.h')
-rw-r--r--source/blender/gpu/GPU_batch_presets.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/source/blender/gpu/GPU_batch_presets.h b/source/blender/gpu/GPU_batch_presets.h
index 55d2e461b30..ba8ad3c4990 100644
--- a/source/blender/gpu/GPU_batch_presets.h
+++ b/source/blender/gpu/GPU_batch_presets.h
@@ -30,6 +30,10 @@
#include "BLI_compiler_attrs.h"
#include "BLI_sys_types.h"
+#ifdef __cplusplus
+extern "C" {
+#endif
+
/* gpu_batch_presets.c */
/* Replacement for gluSphere */
@@ -42,4 +46,8 @@ bool gpu_batch_presets_unregister(struct GPUBatch *preset_batch);
void gpu_batch_presets_reset(void);
void gpu_batch_presets_exit(void);
+#ifdef __cplusplus
+}
+#endif
+
#endif /* __GPU_BATCH_PRESETS_H__ */