Don’t change Render State if Vertex Function is Invalid
This commit is contained in:
parent
eb5fa2b546
commit
a669592651
1 changed files with 6 additions and 0 deletions
|
@ -449,6 +449,12 @@ namespace Ryujinx.Graphics.Metal
|
||||||
{
|
{
|
||||||
Program prg = (Program)program;
|
Program prg = (Program)program;
|
||||||
|
|
||||||
|
if (prg.VertexFunction == null)
|
||||||
|
{
|
||||||
|
Logger.Error?.PrintMsg(LogClass.Gpu, "Invalid Vertex Function!");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
_renderEncoderState = new RenderEncoderState(
|
_renderEncoderState = new RenderEncoderState(
|
||||||
prg.VertexFunction,
|
prg.VertexFunction,
|
||||||
prg.FragmentFunction,
|
prg.FragmentFunction,
|
||||||
|
|
Loading…
Reference in a new issue