Store PImage to GLgraphics texture
in
Contributed Library Questions
•
8 months ago
I need to store an PImage into a GLGraphics texture (offscreen) and I'm trying this without success:
What I'm doing wrong?
- context.update();
- offscreen.beginDraw();
- background(0);
- cam = web.sceneImage().get();
- offscreen.endDraw();
1