mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-28 21:21:41 +00:00
Set Sampler values at program make time instead of every frame. Fix an issue when The user had UBO support but not Binding support.
This commit is contained in:
parent
ddd4360d6d
commit
f8d0c28e53
6 changed files with 79 additions and 176 deletions
|
@ -301,10 +301,7 @@ void TextureCache::TCacheEntry::FromRenderTarget(u32 dstAddr, unsigned int dstFo
|
|||
glViewport(0, 0, virtual_width, virtual_height);
|
||||
|
||||
if(g_ActiveConfig.bUseGLSL)
|
||||
{
|
||||
ProgramShaderCache::SetBothShaders((srcFormat == PIXELFMT_Z24) ? PixelShaderCache::GetDepthMatrixProgram() : PixelShaderCache::GetColorMatrixProgram(), 0);
|
||||
PixelShaderCache::SetPSSampler("samp0", 0);
|
||||
}
|
||||
else
|
||||
PixelShaderCache::SetCurrentShader((srcFormat == PIXELFMT_Z24) ? PixelShaderCache::GetDepthMatrixProgram() : PixelShaderCache::GetColorMatrixProgram());
|
||||
PixelShaderManager::SetColorMatrix(colmat); // set transformation
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue