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_matrix.h
parent8c0864b5edea83b35c2ebd78191e44ac25928e3b (diff)
Cleanup: GPU header guards
Diffstat (limited to 'source/blender/gpu/GPU_matrix.h')
-rw-r--r--source/blender/gpu/GPU_matrix.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/source/blender/gpu/GPU_matrix.h b/source/blender/gpu/GPU_matrix.h
index faa7d0bda64..45e35d13f25 100644
--- a/source/blender/gpu/GPU_matrix.h
+++ b/source/blender/gpu/GPU_matrix.h
@@ -29,8 +29,8 @@
* \ingroup gpu
*/
-#ifndef _GPU_MATRIX_H_
-#define _GPU_MATRIX_H_
+#ifndef __GPU_MATRIX_H__
+#define __GPU_MATRIX_H__
#include "BLI_sys_types.h"
#include "GPU_glew.h"
@@ -181,4 +181,5 @@ bool gpuMatricesDirty(void); /* since last bind */
# define gpuGetNormalMatrix(x) gpuGetNormalMatrix(_GPU_MAT3_CAST(x))
# define gpuGetNormalMatrixInverse(x) gpuGetNormalMatrixInverse(_GPU_MAT3_CAST(x))
#endif /* SUPPRESS_GENERIC_MATRIX_API */
-#endif /* GPU_MATRIX_H */
+
+#endif /* __GPU_MATRIX_H__ */