Take two?
This commit is contained in:
parent
19627a6cb2
commit
3aa5a70827
|
@ -877,8 +877,8 @@ bool VulkanCommandProcessor::IssueCopy() {
|
|||
|
||||
// Render targets 0-3, 4 = depth
|
||||
uint32_t copy_src_select = copy_regs->copy_control.copy_src_select;
|
||||
bool color_clear_enabled = copy_regs->copy_control.color_clear_enable;
|
||||
bool depth_clear_enabled = copy_regs->copy_control.depth_clear_enable;
|
||||
bool color_clear_enabled = static_cast<bool>(copy_regs->copy_control.color_clear_enable);
|
||||
bool depth_clear_enabled = static_cast<bool>(copy_regs->copy_control.depth_clear_enable);
|
||||
CopyCommand copy_command = copy_regs->copy_control.copy_command;
|
||||
|
||||
assert_true(copy_regs->copy_dest_info.copy_dest_array == 0);
|
||||
|
|
Loading…
Reference in New Issue