You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-07 12:30:27 +00:00
Cause buffer_update to emit error if called during compute/draw list
Add error message to buffer update if a compute or draw list is active.
This commit is contained in:
@@ -1491,6 +1491,10 @@ Error RenderingDeviceVulkan::_staging_buffer_allocate(uint32_t p_amount, uint32_
|
||||
}
|
||||
|
||||
Error RenderingDeviceVulkan::_buffer_update(Buffer *p_buffer, size_t p_offset, const uint8_t *p_data, size_t p_data_size, bool p_use_draw_command_buffer, uint32_t p_required_align) {
|
||||
// Buffer update not valid during draw or compute lists
|
||||
ERR_FAIL_COND_V_MSG(draw_list != nullptr, ERR_BUG, "Buffer update not valid when draw list is active.");
|
||||
ERR_FAIL_COND_V_MSG(compute_list != nullptr, ERR_BUG, "Buffer update not valid when compute list is active.");
|
||||
|
||||
//submitting may get chunked for various reasons, so convert this to a task
|
||||
size_t to_submit = p_data_size;
|
||||
size_t submit_from = 0;
|
||||
|
||||
Reference in New Issue
Block a user