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:
authorCampbell Barton <ideasman42@gmail.com>2017-04-15 10:51:08 +0300
committerCampbell Barton <ideasman42@gmail.com>2017-04-15 10:51:08 +0300
commit376d05bf3093d17236bf42ff53e7c757fe699e64 (patch)
treee7ce4f9dab08d164e9e01f57ada0ca58c98cfc5b /source/blender/gpu/GPU_uniformbuffer.h
parent8c0864b5edea83b35c2ebd78191e44ac25928e3b (diff)
Cleanup: GPU header guards
Diffstat (limited to 'source/blender/gpu/GPU_uniformbuffer.h')
-rw-r--r--source/blender/gpu/GPU_uniformbuffer.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/source/blender/gpu/GPU_uniformbuffer.h b/source/blender/gpu/GPU_uniformbuffer.h
index bcb6e1077b7..36b659e30b1 100644
--- a/source/blender/gpu/GPU_uniformbuffer.h
+++ b/source/blender/gpu/GPU_uniformbuffer.h
@@ -29,6 +29,9 @@
* \ingroup gpu
*/
+#ifndef __GPU_UNIFORMBUFFER_H__
+#define __GPU_UNIFORMBUFFER_H__
+
typedef struct GPUUniformBuffer GPUUniformBuffer;
GPUUniformBuffer *GPU_uniformbuffer_create(int size, const void *data, char err_out[256]);
@@ -42,3 +45,5 @@ void GPU_uniformbuffer_unbind(GPUUniformBuffer *ubo);
#endif
int GPU_uniformbuffer_bindpoint(GPUUniformBuffer *ubo);
+
+#endif /* __GPU_UNIFORMBUFFER_H__ */