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:
Diffstat (limited to 'source/blender/gpu/GPU_uniform_buffer_types.h')
-rw-r--r--source/blender/gpu/GPU_uniform_buffer_types.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/source/blender/gpu/GPU_uniform_buffer_types.h b/source/blender/gpu/GPU_uniform_buffer_types.h
index 36ce53d21c7..fb372582311 100644
--- a/source/blender/gpu/GPU_uniform_buffer_types.h
+++ b/source/blender/gpu/GPU_uniform_buffer_types.h
@@ -27,19 +27,19 @@
extern "C" {
#endif
-typedef enum GPUUniformBuiltinStructType {
- GPU_UNIFORM_STRUCT_NONE = 0,
- GPU_UNIFORM_STRUCT_1,
- GPU_NUM_UNIFORM_STRUCTS, /* Special value, denotes number of structs. */
-} GPUUniformBuiltinStructType;
+typedef enum GPUShaderBlockType {
+ GPU_SHADER_BLOCK_CUSTOM = 0,
+ GPU_SHADER_BLOCK_3D_COLOR,
+ GPU_NUM_SHADER_BLOCK_TYPES, /* Special value, denotes number of structs. */
+} GPUShaderBlockType;
-typedef struct GPUUniformBuiltinStruct1 {
+typedef struct GPUShaderBlock3dColor {
float ModelMatrix[4][4];
float ModelViewProjectionMatrix[4][4];
float color[4];
float WorldClipPlanes[6][4];
int SrgbTransform;
-} GPUUniformBuiltinStruct1;
+} GPUShaderBlock3dColor;
#ifdef __cplusplus
}