fix(SkinOpenGLWindow): do not enable backface culling

Signed-off-by: Octol1ttle <l1ttleofficial@outlook.com>
(cherry picked from commit 3422fa5c5a)
This commit is contained in:
Octol1ttle 2026-02-21 12:31:51 +05:00 committed by github-actions[bot]
parent 28ad98862b
commit 3cfe16a3d7

View file

@ -217,9 +217,6 @@ void SkinOpenGLWindow::paintGL()
glEnable(GL_DEPTH_TEST);
glDepthFunc(GL_LESS);
// Enable back face culling
glEnable(GL_CULL_FACE);
glEnable(GL_BLEND);
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);