Fixed cull face state

This commit is contained in:
Xiaro 2021-03-06 01:47:28 -05:00
parent cee55854e4
commit 61ac80f2d4
No known key found for this signature in database
GPG Key ID: 996D265D6E155377
1 changed files with 1 additions and 1 deletions

View File

@ -145,7 +145,6 @@ internal object ESP : Module(
}
GlStateUtils.texture2d(false)
GlStateUtils.cull(false)
}
private fun drawShader() {
@ -170,6 +169,7 @@ internal object ESP : Module(
GlStateUtils.depth(true)
GlStateUtils.texture2d(false)
GlStateManager.depthMask(false)
GlStateUtils.cull(false)
// Revert matrix
GlStateManager.matrixMode(GL_PROJECTION)