set stencil state

This commit is contained in:
Samuliak 2024-08-07 20:59:05 +02:00
parent d3249dc324
commit 1bcdade83e
8 changed files with 79 additions and 44 deletions

View file

@ -271,6 +271,12 @@ namespace LatteDecompiler
}
}
// generate depth output for pixel shader
if (decompilerContext->shader->pixelDepthOutputMask)
{
src->add("float passDepth [[depth(any)]];" _CRLF);
}
src->add("};" _CRLF _CRLF);
}
}