Merge pull request #11958 from hi-ogawa/fix-shadow-map-front-face
Fix front face definition
This commit is contained in:
commit
45c878e380
1 changed files with 2 additions and 1 deletions
|
@ -2142,7 +2142,6 @@ void RasterizerSceneGLES3::_render_list(RenderList::Element **p_elements, int p_
|
|||
first = false;
|
||||
}
|
||||
|
||||
glFrontFace(GL_CW);
|
||||
glBindVertexArray(0);
|
||||
|
||||
state.scene_shader.set_conditional(SceneShaderGLES3::USE_INSTANCING, false);
|
||||
|
@ -5026,6 +5025,8 @@ void RasterizerSceneGLES3::initialize() {
|
|||
}
|
||||
|
||||
state.debug_draw = VS::VIEWPORT_DEBUG_DRAW_DISABLED;
|
||||
|
||||
glFrontFace(GL_CW);
|
||||
}
|
||||
|
||||
void RasterizerSceneGLES3::iteration() {
|
||||
|
|
Loading…
Reference in a new issue