processing/processing
View on GitHubShape with only two vertices won't draw (P2D and P3D, works with JAVA2D)
Open
#5,270 opened on Sep 23, 2017
help wantedlowopengl
Description
Description
A shape with only two vertices in immediate mode won't render; it appears when adding a third vertex. This issue presents itself only with the hardware renderers.
Steps to Reproduce
void setup(){
size(200, 200, P2D);
noFill();
stroke(0);
beginShape();
vertex(10, 10);
vertex(100, 100);
endShape();
}
Your Environment
Processing version: 3.3.6 Operating System and OS version: macOS 10.12.6