-
Notifications
You must be signed in to change notification settings - Fork 131
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Reaction diffusion not working on Processing 3.5.3 #34
Comments
@micuat I would also have you try this in 3.4 as this is the release that caused the problems for me. which may shed light on where/which build the "not" expected results occured. |
@hype I tested it and it runs on 3.4 - so it's not related to the wrapping problem, sorry for the confusion. But reaction diffusion still doesn't run on 3.5.3. |
@micuat I can confirm same for me, I believe this is an issue with jogl jars included with processing, that are somewhat hacked (ie do not exactly correspond to jogl-2.3.2) and this all a bit opaque to all but processing developers. |
@monkstone Do you have any info about those changes? |
Here are the changes https://github.com/gohai/jogl/tree/processing, however I know think its not the jars in this case, but the vanilla processing itself (substituting jogl jars does not fix). |
@micuat I know it's not a fix, but recently I contributed an example how to use Reaction Diffusion in pure Processing: https://github.com/SableRaf/Shadertoy2Processing/tree/master/examples/reactionDiffusion2Pass |
so I guess it's not really a problem with PixelFlow but because of changes in processing... should we open a separate issue on processing/processing as well?? @morisil cool, I'm just curious if you are using original pgraphics (unsigned char) or you somehow make a buffer with floats. |
@micuat Yes, the original PGraphics. Apparently 8bit color is good enough for this particular reaction diffusion. But the lack of floating point textures is the reason I am switching in many cases from Processing to OPENRNDR: See also my contribution here for comparison: |
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
this is not applied to the buffer at all.
The text was updated successfully, but these errors were encountered: