Graphics/MaterialPipeline: Disable depth sorting for Translucent2D pipeline

This commit is contained in:
Lynix 2018-04-15 02:35:51 +02:00
parent 347f8cc986
commit 9f95a6122b
1 changed files with 1 additions and 1 deletions

View File

@ -199,7 +199,7 @@ namespace Nz
pipelineInfo.blending = true;
pipelineInfo.depthWrite = false;
pipelineInfo.faceCulling = false;
pipelineInfo.depthSorting = true;
pipelineInfo.depthSorting = false;
pipelineInfo.scissorTest = true;
pipelineInfo.dstBlend = BlendFunc_InvSrcAlpha;
pipelineInfo.srcBlend = BlendFunc_SrcAlpha;