Skip to content

Commit

Permalink
Fix Scatterplot layer rendering on Xclipse 920 graphics (#8046)
Browse files Browse the repository at this point in the history
  • Loading branch information
lm1 committed Aug 20, 2023
1 parent 7643eea commit b64c5f9
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@ void main(void) {
}
gl_FragColor = vec4(vLineColor.rgb, vLineColor.a * isLine);
}
} else if (filled) {
gl_FragColor = vFillColor;
} else {
} else if (!filled) {
discard;
} else {
gl_FragColor = vFillColor;
}
gl_FragColor.a *= inCircle;
Expand Down

0 comments on commit b64c5f9

Please sign in to comment.