mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-12-02 08:52:12 +00:00
- fix stencil writing color
This commit is contained in:
parent
555beb58f0
commit
eff38393af
1 changed files with 1 additions and 1 deletions
|
@ -436,7 +436,7 @@ void PolyTriangleThreadData::SetDepthBias(float depthBiasConstantFactor, float d
|
||||||
|
|
||||||
void PolyTriangleThreadData::SetColorMask(bool r, bool g, bool b, bool a)
|
void PolyTriangleThreadData::SetColorMask(bool r, bool g, bool b, bool a)
|
||||||
{
|
{
|
||||||
drawargs.SetWriteColor(r || g || b || a);
|
drawargs.SetWriteColor(r);
|
||||||
}
|
}
|
||||||
|
|
||||||
void PolyTriangleThreadData::SetStencil(int stencilRef, int op)
|
void PolyTriangleThreadData::SetStencil(int stencilRef, int op)
|
||||||
|
|
Loading…
Reference in a new issue