From f94a15126a819ce9287e4b62b9fedd305526c7a3 Mon Sep 17 00:00:00 2001 From: Stenzek Date: Fri, 6 Sep 2024 18:00:00 +1000 Subject: [PATCH] GPUDevice: Fix pipeline cache loading (again) --- src/util/gpu_device.cpp | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/src/util/gpu_device.cpp b/src/util/gpu_device.cpp index 025c29fed..7fb5f60ed 100644 --- a/src/util/gpu_device.cpp +++ b/src/util/gpu_device.cpp @@ -515,18 +515,9 @@ std::string GPUDevice::GetShaderCacheBaseName(std::string_view type) const bool GPUDevice::OpenPipelineCache(const std::string& filename) { - // Let it create if it does not exist. - if (!FileSystem::FileExists(filename.c_str())) - return true; - Error error; CompressHelpers::OptionalByteBuffer data = CompressHelpers::DecompressFile(CompressHelpers::CompressType::Zstandard, filename.c_str(), std::nullopt, &error); - if (!data.has_value()) - { - ERROR_LOG("Failed to load pipeline cache from '{}': {}", Path::GetFileName(filename), error.GetDescription()); - data.reset(); - } if (data.has_value()) { @@ -535,6 +526,7 @@ bool GPUDevice::OpenPipelineCache(const std::string& filename) } else { + ERROR_LOG("Failed to load pipeline cache from '{}': {}", Path::GetFileName(filename), error.GetDescription()); s_pipeline_cache_size = 0; s_pipeline_cache_hash = {}; } @@ -546,7 +538,8 @@ bool GPUDevice::OpenPipelineCache(const std::string& filename) return false; } - INFO_LOG("Pipeline cache hash: {}", SHA1Digest::DigestToString(s_pipeline_cache_hash)); + INFO_LOG("Loaded pipeline cache: {} bytes with hash: {}", s_pipeline_cache_size, + SHA1Digest::DigestToString(s_pipeline_cache_hash)); return true; }