Revert "[TEST] Some miscellaneous changes within buffers queue and RAII deallocations"

This commit is contained in:
CamilleLaVey
2026-07-28 01:24:06 -04:00
parent 77ffefbbbf
commit f6c1404e09
5 changed files with 7 additions and 57 deletions
+2 -2
View File
@@ -1639,10 +1639,10 @@ typename BufferCache<P>::OverlapResult BufferCache<P>::ResolveOverlaps(DAddr dev
// When this memory region has been joined a bunch of times, we assume it's being used
// as a stream buffer. Increase the size to skip constantly recreating buffers.
has_stream_leap = true;
if (expands_left) {
if (expands_right) {
expand_begin(CACHING_PAGESIZE * 128);
}
if (expands_right) {
if (expands_left) {
expand_end(CACHING_PAGESIZE * 128);
}
}
@@ -834,6 +834,7 @@ void BlitImageHelper::ConvertR16ToD16(const Framebuffer* dst_framebuffer,
void BlitImageHelper::ConvertABGR8ToD24S8(const Framebuffer* dst_framebuffer,
const ImageView& src_image_view) {
if (!device.IsExtShaderStencilExportSupported()) {
// Shader requires VK_EXT_shader_stencil_export which is not available
LOG_WARNING(Render_Vulkan, "ConvertABGR8ToD24S8 requires shader_stencil_export, skipping");
return;
}