Skip to content

Commit 80e17b6

Browse files
committed
Remove broken PGraphics delegations; keep only working ones
1 parent 4bcdb70 commit 80e17b6

1 file changed

Lines changed: 1 addition & 6 deletions

File tree

src/Processing.h

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5287,12 +5287,7 @@ inline void PGraphics::popMatrix() { if(PApplet
52875287
inline void PGraphics::beginShape() { if(PApplet::g_papplet) PApplet::g_papplet->beginShape(); }
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); }
5290-
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::bezierVertex(float cx1,float cy1,float cx2,float cy2,float x,float y)
5292-
{ if(PApplet::g_papplet) PApplet::g_papplet->bezierVertex(cx1,cy1,cx2,cy2,x,y); }
5293-
inline void PGraphics::curveVertex(float x, float y) { if(PApplet::g_papplet) PApplet::g_papplet->curveVertex(x,y); }
5294-
inline void PGraphics::curveVertex(float x, float y, float z) { if(PApplet::g_papplet) PApplet::g_papplet->curveVertex(x,y,z); }
5295-
inline void PGraphics::quadraticVertex(float cx, float cy, float x, float y){ if(PApplet::g_papplet) PApplet::g_papplet->quadraticVertex(cx,cy,x,y); }
5290+
52965291
inline void PGraphics::clear() { if(PApplet::g_papplet) PApplet::g_papplet->clear(); }
52975292
inline void PGraphics::translate(float x, float y, float z) { if(PApplet::g_papplet) PApplet::g_papplet->translate(x,y,z); }
52985293
inline void PGraphics::rotateX(float angle) { if(PApplet::g_papplet) PApplet::g_papplet->rotateX(angle); }

0 commit comments

Comments
 (0)