Commit Fix for GLES3 point size not working
(cherry picked from commit f23f0a27c1
)
This commit is contained in:
parent
149f16b2fa
commit
ff125a638a
|
@ -2228,6 +2228,9 @@ void RasterizerSceneGLES3::_render_list_template(RenderListParameters *p_params,
|
|||
}
|
||||
|
||||
RS::PrimitiveType primitive = surf->primitive;
|
||||
if (shader->uses_point_size) {
|
||||
primitive = RS::PRIMITIVE_POINTS;
|
||||
}
|
||||
static const GLenum prim[5] = { GL_POINTS, GL_LINES, GL_LINE_STRIP, GL_TRIANGLES, GL_TRIANGLE_STRIP };
|
||||
GLenum primitive_gl = prim[int(primitive)];
|
||||
|
||||
|
|
|
@ -1510,7 +1510,7 @@ MaterialStorage::MaterialStorage() {
|
|||
actions.renames["LIGHT_VERTEX"] = "light_vertex";
|
||||
actions.renames["SHADOW_VERTEX"] = "shadow_vertex";
|
||||
actions.renames["UV"] = "uv";
|
||||
actions.renames["POINT_SIZE"] = "gl_PointSize";
|
||||
actions.renames["POINT_SIZE"] = "point_size";
|
||||
|
||||
actions.renames["MODEL_MATRIX"] = "model_matrix";
|
||||
actions.renames["CANVAS_MATRIX"] = "canvas_transform";
|
||||
|
@ -1591,7 +1591,7 @@ MaterialStorage::MaterialStorage() {
|
|||
actions.renames["UV"] = "uv_interp";
|
||||
actions.renames["UV2"] = "uv2_interp";
|
||||
actions.renames["COLOR"] = "color_interp";
|
||||
actions.renames["POINT_SIZE"] = "gl_PointSize";
|
||||
actions.renames["POINT_SIZE"] = "point_size";
|
||||
actions.renames["INSTANCE_ID"] = "gl_InstanceID";
|
||||
actions.renames["VERTEX_ID"] = "gl_VertexID";
|
||||
|
||||
|
|
Loading…
Reference in New Issue