diff options
Diffstat (limited to 'Source/Core/VideoBackends/Null/ShaderCache.cpp')
| -rw-r--r-- | Source/Core/VideoBackends/Null/ShaderCache.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/VideoBackends/Null/ShaderCache.cpp b/Source/Core/VideoBackends/Null/ShaderCache.cpp index a7513f4909..a8decc6f58 100644 --- a/Source/Core/VideoBackends/Null/ShaderCache.cpp +++ b/Source/Core/VideoBackends/Null/ShaderCache.cpp @@ -33,9 +33,9 @@ void ShaderCache<Uid>::Clear() } template <typename Uid> -bool ShaderCache<Uid>::SetShader(DSTALPHA_MODE dst_alpha_mode, u32 primitive_type) +bool ShaderCache<Uid>::SetShader(u32 primitive_type) { - Uid uid = GetUid(dst_alpha_mode, primitive_type, APIType::OpenGL); + Uid uid = GetUid(primitive_type, APIType::OpenGL); // Check if the shader is already set if (m_last_entry) |
