Browse Source

Forgot to apply adaptive_batch

pull/3737/head
Forrest Mark X 2 weeks ago
committed by crueter
parent
commit
c71604fed3
  1. 2
      src/video_core/texture_cache/texture_cache.h

2
src/video_core/texture_cache/texture_cache.h

@ -1493,7 +1493,7 @@ void TextureCache<P>::TickAsyncUnswizzle() {
const bool whole_texture = adaptive_batch == 0xFFFFFFFF;
const u32 z_start = static_cast<u32>(task.last_submitted_offset / task.bytes_per_slice);
const u32 slices_to_process = (std::min)(complete_slices, swizzle_slices_per_batch);
const u32 slices_to_process = (std::min)(complete_slices, adaptive_batch);
if (whole_texture) {
const auto uploads = FullUploadSwizzles(task.info);

Loading…
Cancel
Save