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>2020-09-07 00:45:51 +0300
committerClément Foucault <foucault.clem@gmail.com>2020-09-07 14:59:51 +0300
commitbb2aeb4504907cab1cf8c4afc4dd1d6495c940e4 (patch)
tree550d043273b767d55ef32409e58de17cb75e724e /source/blender/gpu/intern/gpu_vertex_format_private.h
parent99e3541d3b1a1fc62fcd24e9f0d12a631e4caead (diff)
GPUVertBuf: Rename GPUVertBuf to VertBuf and add some getters
to avoid more typecasts.
Diffstat (limited to 'source/blender/gpu/intern/gpu_vertex_format_private.h')
-rw-r--r--source/blender/gpu/intern/gpu_vertex_format_private.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/source/blender/gpu/intern/gpu_vertex_format_private.h b/source/blender/gpu/intern/gpu_vertex_format_private.h
index 45523c0e956..c09be94e8ba 100644
--- a/source/blender/gpu/intern/gpu_vertex_format_private.h
+++ b/source/blender/gpu/intern/gpu_vertex_format_private.h
@@ -29,10 +29,11 @@
extern "C" {
#endif
-void VertexFormat_pack(GPUVertFormat *format);
+struct GPUVertFormat;
+
+void VertexFormat_pack(struct GPUVertFormat *format);
uint padding(uint offset, uint alignment);
-uint vertex_buffer_size(const GPUVertFormat *format, uint vertex_len);
-GLenum convert_comp_type_to_gl(GPUVertCompType type);
+uint vertex_buffer_size(const struct GPUVertFormat *format, uint vertex_len);
#ifdef __cplusplus
}