[D3D12] Remove context_ from PipelineCache

This commit is contained in:
Triang3l
2018-08-01 18:41:07 +03:00
parent a627ef3d66
commit 6d2441a9ee
3 changed files with 6 additions and 11 deletions

View File

@@ -366,8 +366,7 @@ bool D3D12CommandProcessor::SetupContext() {
return false;
}
pipeline_cache_ =
std::make_unique<PipelineCache>(this, register_file_, context);
pipeline_cache_ = std::make_unique<PipelineCache>(this, register_file_);
return true;
}