summaryrefslogtreecommitdiffstats
path: root/drivers/vulkan/rendering_device_vulkan.h
diff options
context:
space:
mode:
authorPatrick Dawson <pat@dw.is>2022-11-11 15:45:36 +0100
committerPatrick Dawson <pat@dw.is>2022-11-11 15:45:36 +0100
commitd7136f2d51d44a3ff35d1d1341db6421c0bdf5e9 (patch)
tree99a5ca380ddcdf8d40bbfac7bb8df05a560901a3 /drivers/vulkan/rendering_device_vulkan.h
parent140f0395470975f1c20648ffd8807be113a9e373 (diff)
downloadredot-engine-d7136f2d51d44a3ff35d1d1341db6421c0bdf5e9.tar.gz
Add `offsets` parameter to RenderingDevice::vertex_array_create
Diffstat (limited to 'drivers/vulkan/rendering_device_vulkan.h')
-rw-r--r--drivers/vulkan/rendering_device_vulkan.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/vulkan/rendering_device_vulkan.h b/drivers/vulkan/rendering_device_vulkan.h
index 7c75e9bb2e..05f12ee7f9 100644
--- a/drivers/vulkan/rendering_device_vulkan.h
+++ b/drivers/vulkan/rendering_device_vulkan.h
@@ -1095,7 +1095,7 @@ public:
// Internally reference counted, this ID is warranted to be unique for the same description, but needs to be freed as many times as it was allocated.
virtual VertexFormatID vertex_format_create(const Vector<VertexAttribute> &p_vertex_formats);
- virtual RID vertex_array_create(uint32_t p_vertex_count, VertexFormatID p_vertex_format, const Vector<RID> &p_src_buffers);
+ virtual RID vertex_array_create(uint32_t p_vertex_count, VertexFormatID p_vertex_format, const Vector<RID> &p_src_buffers, const Vector<uint64_t> &p_offsets = Vector<uint64_t>());
virtual RID index_buffer_create(uint32_t p_size_indices, IndexBufferFormat p_format, const Vector<uint8_t> &p_data = Vector<uint8_t>(), bool p_use_restart_indices = false);