-
Notifications
You must be signed in to change notification settings - Fork 132
Open
Description
I found that reaction diffusion does not work on Processing 3.5.3 (does not give errors in console, but it only shows blank white screen).
I recently updated Processing - when I open 3.3.7, reaction diffusion works fine - but with 3.5.3, it doesn't give any output. I guess any of
// init
tex_render = (PGraphics2D) createGraphics(width, height, P2D);
tex_render.smooth(0);
tex_render.beginDraw();
tex_render.textureSampling(2);
tex_render.blendMode(REPLACE);
tex_render.clear();
tex_render.noStroke();
tex_render.background(0xFFFFFFFF);
tex_render.fill (0x0000FF00);
tex_render.noStroke();
tex_render.rectMode(CENTER);
tex_render.rect(width/2, height/2, 20, 20);
tex_render.endDraw();
this is not applied to the buffer at all.
Metadata
Metadata
Assignees
Labels
No labels