D3D12: Support returning pipeline cache data

This commit is contained in:
Stenzek
2019-04-15 21:59:07 +10:00
parent 61a656570e
commit 5cef09e383
3 changed files with 28 additions and 4 deletions

View File

@ -103,7 +103,7 @@ std::unique_ptr<AbstractPipeline> Renderer::CreatePipeline(const AbstractPipelin
const void* cache_data,
size_t cache_data_length)
{
return DXPipeline::Create(config);
return DXPipeline::Create(config, cache_data, cache_data_length);
}
u16 Renderer::BBoxRead(int index)