mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-01 21:58:48 +00:00
OGL: Re-implement async shader compiling
This commit is contained in:
parent
dec0c3bce8
commit
f9c829c7f7
16 changed files with 136 additions and 33 deletions
|
@ -1027,3 +1027,8 @@ bool Renderer::UseVertexDepthRange() const
|
|||
// in the vertex shader.
|
||||
return fabs(xfmem.viewport.zRange) > 16777215.0f || fabs(xfmem.viewport.farZ) > 16777215.0f;
|
||||
}
|
||||
|
||||
std::unique_ptr<VideoCommon::AsyncShaderCompiler> Renderer::CreateAsyncShaderCompiler()
|
||||
{
|
||||
return std::make_unique<VideoCommon::AsyncShaderCompiler>();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue