WebKit Threading Violation - initial use of WebKit from a secondary thread. - never seen in forum before?
in
Core Library Questions
•
5 months ago
"WebKit Threading Violation - initial use of WebKit from a secondary thread."
"java(483,0xacd53a28) malloc: *** error for object 0x16615d0: pointer being freed was not allocated
*** set a breakpoint in malloc_error_break to debug"
Any ideas what is causing those?
import processing.video.*;
- Movie um, dois;
- void setup(){
- size (800,300, P2D);
- um = new Movie(this, "tet.mov");
- dois = new Movie(this, "tet2.mov");
- um.loop();
- dois.loop();
- }
- void draw(){
- background(0);
- image(um, 10, 0);
- image(dois, 400, 0);
- }
1