mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-08-02 23:42:43 +00:00
Logging for checking if buffers are memory contiguous
This commit is contained in:
parent
b58199ef8f
commit
ebcd42aac3
@ -761,6 +761,7 @@ Liverpool::Task Liverpool::ProcessCompute(std::span<const u32> acb, u32 vqid) {
|
|||||||
std::back_inserter(compute_cutoff_end_to_prepend[vqid]));
|
std::back_inserter(compute_cutoff_end_to_prepend[vqid]));
|
||||||
|
|
||||||
use_split_instruction = true;
|
use_split_instruction = true;
|
||||||
|
LOG_INFO(Render_Vulkan, "Start of buffer 2: {}", fmt::ptr(acb.data()));
|
||||||
LOG_INFO(Render_Vulkan, "Executing split command!");
|
LOG_INFO(Render_Vulkan, "Executing split command!");
|
||||||
} else {
|
} else {
|
||||||
LOG_INFO(Render_Vulkan,
|
LOG_INFO(Render_Vulkan,
|
||||||
@ -795,6 +796,7 @@ Liverpool::Task Liverpool::ProcessCompute(std::span<const u32> acb, u32 vqid) {
|
|||||||
carry.reserve(packet_size_dw);
|
carry.reserve(packet_size_dw);
|
||||||
carry.insert(carry.end(), acb.begin(), acb.end());
|
carry.insert(carry.end(), acb.begin(), acb.end());
|
||||||
compute_cutoff_end_to_prepend[vqid] = std::move(carry);
|
compute_cutoff_end_to_prepend[vqid] = std::move(carry);
|
||||||
|
LOG_INFO(Render_Vulkan, " End of buffer 1: {}", fmt::ptr(acb.data() + acb.size() - 1));
|
||||||
acb = {};
|
acb = {};
|
||||||
use_split_instruction = true;
|
use_split_instruction = true;
|
||||||
break;
|
break;
|
||||||
|
Loading…
Reference in New Issue
Block a user