mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-07 22:18:33 +00:00
Remove some error logging to avoid log spam
This commit is contained in:
parent
ffaad0eaac
commit
c5b9088914
|
@ -608,10 +608,6 @@ namespace Ryujinx.Graphics.OpenGL
|
|||
{
|
||||
((Sampler)sampler).Bind(unit);
|
||||
}
|
||||
else if (unit == -1)
|
||||
{
|
||||
Logger.PrintError(LogClass.Gpu, $"Invalid binding point: {stage} {index}.");
|
||||
}
|
||||
}
|
||||
|
||||
public void SetStencilTest(StencilTestDescriptor stencilTest)
|
||||
|
@ -676,10 +672,6 @@ namespace Ryujinx.Graphics.OpenGL
|
|||
((TextureView)texture).Bind(unit);
|
||||
}
|
||||
}
|
||||
else if (unit == -1)
|
||||
{
|
||||
Logger.PrintError(LogClass.Gpu, $"Invalid binding point: {stage} {index}.");
|
||||
}
|
||||
}
|
||||
|
||||
public void SetUniformBuffer(int index, ShaderStage stage, BufferRange buffer)
|
||||
|
@ -763,8 +755,6 @@ namespace Ryujinx.Graphics.OpenGL
|
|||
|
||||
if (bindingPoint == -1)
|
||||
{
|
||||
Logger.PrintError(LogClass.Gpu, $"Invalid binding point: {stage} {index}.");
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue