Bug 1055 : Capture (processing.video) doesn't work with OpenGL renderer
Last modified: 2008-11-24 17:20




Status:
RESOLVED
Resolution:
DUPLICATE of bug 882
Priority:
P2
Severity:
normal

 

Reporter:
Dimitre
Assigned To:
fry

Attachment Type Created Size Actions

Description:   Opened: 2008-11-24 17:18
Capture (processing.video) doesn't work with OpenGL renderer
It seems I can't draw anything on screen when using both libraries
minimal code:

import processing.opengl.*;
import processing.video.*;
Capture video;

void setup() {
size(640, 480,OPENGL);
video = new Capture(this, width, height, 12);
background(0);
stroke(255);
line(0,0,width,height);
}

void draw() {
}
Additional Comment #1 From Dimitre 2008-11-24 17:19
Processing 0161
OS X 10.5.5
MacbookPro2,2
Chipset Model: ATY,RadeonX1600
Additional Comment #2 From fry 2008-11-24 17:20


*** This bug has been marked as a duplicate of 882 ***