Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/doitsujin/dxvk.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Rebohle <philip.rebohle@tu-dortmund.de>2022-10-19 01:51:56 +0300
committerPhilip Rebohle <philip.rebohle@tu-dortmund.de>2022-10-19 01:51:56 +0300
commitb8aa20c408c24a93f6fbb8b4ae46ff38bb09797d (patch)
tree017198da97e21ae023dc68f0736299b224436bd4
parent8d2269a7646d251f4ec9262bb283db7de10afa70 (diff)
-rw-r--r--src/dxvk/dxvk_shader.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/dxvk/dxvk_shader.cpp b/src/dxvk/dxvk_shader.cpp
index 0e3195ca..13872994 100644
--- a/src/dxvk/dxvk_shader.cpp
+++ b/src/dxvk/dxvk_shader.cpp
@@ -997,10 +997,10 @@ namespace dxvk {
// If this is not the first time we're compiling the pipeline,
// try to get a cache hit using the shader module identifier
// so that we don't have to decompress our SPIR-V shader again.
- if (m_compiledOnce && canUsePipelineCacheControl()) {
- pipeline = this->compileShaderPipeline(args, stage,
- VK_PIPELINE_CREATE_FAIL_ON_PIPELINE_COMPILE_REQUIRED_BIT);
- }
+ // if (m_compiledOnce && canUsePipelineCacheControl()) {
+ // pipeline = this->compileShaderPipeline(args, stage,
+ // VK_PIPELINE_CREATE_FAIL_ON_PIPELINE_COMPILE_REQUIRED_BIT);
+ // }
if (!pipeline)
pipeline = this->compileShaderPipeline(args, stage, 0);