mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-04-02 15:56:38 +00:00
Fix null sampler crash
This commit is contained in:
parent
6fed9b51b5
commit
ca30248d97
@ -869,7 +869,7 @@ namespace Ryujinx.Graphics.Metal
|
|||||||
{
|
{
|
||||||
if (texture != null)
|
if (texture != null)
|
||||||
{
|
{
|
||||||
_currentState.TextureRefs[binding] = new(stage, texture, samplerHolder.GetSampler());
|
_currentState.TextureRefs[binding] = new(stage, texture, samplerHolder?.GetSampler());
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user