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:
authorClément Foucault <foucault.clem@gmail.com>2018-07-18 01:12:21 +0300
committerClément Foucault <foucault.clem@gmail.com>2018-07-18 12:49:15 +0300
commit8cd7828792419fb4eac9a2a477968535b4c71535 (patch)
tree8fc733149fe07b7d9edd4b8b1e709519b4481887 /source/blender/gpu/intern/gpu_attr_binding_private.h
parent247ad2034de2c33a6d9cb7d3b6f1ef7ffa5b859d (diff)
GWN: Port to GPU module: Replace GWN prefix by GPU
Diffstat (limited to 'source/blender/gpu/intern/gpu_attr_binding_private.h')
-rw-r--r--source/blender/gpu/intern/gpu_attr_binding_private.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/source/blender/gpu/intern/gpu_attr_binding_private.h b/source/blender/gpu/intern/gpu_attr_binding_private.h
index 0e0bf89178a..240509de0d4 100644
--- a/source/blender/gpu/intern/gpu_attr_binding_private.h
+++ b/source/blender/gpu/intern/gpu_attr_binding_private.h
@@ -23,21 +23,21 @@
* ***** END GPL LICENSE BLOCK *****
*/
-/** \file blender/gpu/gwn_attr_binding_private.h
+/** \file blender/gpu/intern/gpu_attr_binding_private.h
* \ingroup gpu
*
- * Gawain vertex attribute binding
+ * GPU vertex attribute binding
*/
-#ifndef __GWN_ATTR_BINDING_PRIVATE_H__
-#define __GWN_ATTR_BINDING_PRIVATE_H__
+#ifndef __GPU_ATTR_BINDING_PRIVATE_H__
+#define __GPU_ATTR_BINDING_PRIVATE_H__
#include "GPU_vertex_format.h"
#include "GPU_shader_interface.h"
-void AttribBinding_clear(Gwn_AttrBinding*);
+void AttribBinding_clear(GPUAttrBinding*);
-void get_attrib_locations(const Gwn_VertFormat*, Gwn_AttrBinding*, const Gwn_ShaderInterface*);
-unsigned read_attrib_location(const Gwn_AttrBinding*, unsigned a_idx);
+void get_attrib_locations(const GPUVertFormat*, GPUAttrBinding*, const GPUShaderInterface*);
+unsigned read_attrib_location(const GPUAttrBinding*, unsigned a_idx);
-#endif /* __GWN_ATTR_BINDING_PRIVATE_H__ */
+#endif /* __GPU_ATTR_BINDING_PRIVATE_H__ */