Skip to content

Commit 4bcdb70

Browse files
committed
Remove unmatched PGraphics vertex UV delegations
1 parent 05187f4 commit 4bcdb70

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

src/Processing.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5288,7 +5288,6 @@ inline void PGraphics::beginShape() { if(PApplet
52885288
inline void PGraphics::endShape(int mode) { if(PApplet::g_papplet) PApplet::g_papplet->endShape(mode); }
52895289
inline void PGraphics::vertex(float x, float y) { if(PApplet::g_papplet) PApplet::g_papplet->vertex(x,y); }
52905290
inline void PGraphics::vertex(float x, float y, float z) { if(PApplet::g_papplet) PApplet::g_papplet->vertex(x,y,z); }
5291-
inline void PGraphics::vertex(float x, float y, float z, float u, float v){ if(PApplet::g_papplet) PApplet::g_papplet->vertex(x,y,z,u,v); }
52925291
inline void PGraphics::bezierVertex(float cx1,float cy1,float cx2,float cy2,float x,float y)
52935292
{ if(PApplet::g_papplet) PApplet::g_papplet->bezierVertex(cx1,cy1,cx2,cy2,x,y); }
52945293
inline void PGraphics::curveVertex(float x, float y) { if(PApplet::g_papplet) PApplet::g_papplet->curveVertex(x,y); }

0 commit comments

Comments
 (0)