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/opengl/gl_vertex_array.cc')
-rw-r--r--source/blender/gpu/opengl/gl_vertex_array.cc11
1 files changed, 11 insertions, 0 deletions
diff --git a/source/blender/gpu/opengl/gl_vertex_array.cc b/source/blender/gpu/opengl/gl_vertex_array.cc
index b2d2445f113..64d44c39587 100644
--- a/source/blender/gpu/opengl/gl_vertex_array.cc
+++ b/source/blender/gpu/opengl/gl_vertex_array.cc
@@ -155,6 +155,17 @@ void GLVertArray::update_bindings(const GLuint vao,
}
}
+/* Another version of update_bindings for Immediate mode. */
+void GLVertArray::update_bindings(const GLuint vao,
+ const uint v_first,
+ const GPUVertFormat *format,
+ const ShaderInterface *interface)
+{
+ glBindVertexArray(vao);
+
+ vbo_bind(interface, format, v_first, 0, false);
+}
+
/** \} */
} // namespace blender::gpu \ No newline at end of file