Merge pull request #38734 from lawnjelly/polyline_bug

GLES2 polyline drawn as GL_LINE_STRIP to match GLES3
This commit is contained in:
Rémi Verschelde 2020-05-14 20:25:19 +02:00 committed by GitHub
commit f5a3d34593
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1526,7 +1526,7 @@ void RasterizerCanvasGLES2::render_batches(Item::Command *const *p_commands, Ite
offset += to_draw * 2;
}
} else {
_draw_generic(GL_LINES, pline->lines.size(), pline->lines.ptr(), NULL, pline->line_colors.ptr(), pline->line_colors.size() == 1);
_draw_generic(GL_LINE_STRIP, pline->lines.size(), pline->lines.ptr(), NULL, pline->line_colors.ptr(), pline->line_colors.size() == 1);
}
#ifdef GLES_OVER_GL