We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In FX2D, tint() causes tinted image to flicker.
tint(255,50) should tint the image, but it flickers between being tinted and being full opacity.
tint(255,50)
tint() causes tinted image to flicker.
tint()
Calling tint(255,50) (for example), then draw an image image([image]), then noTint()
image([image])
noTint()
The text was updated successfully, but these errors were encountered:
I cannot reproduce a flickr on Processing 3.3.7, OS X 10.12.6, Macbook Pro 2016 using the following sketch:
PImage img; void setup() { size(512, 512, FX2D); img = loadImage("https://processing.org/img/processing3-logo.png"); } void draw() { tint(255, 64, 0); image(img, 0, 0); noTint(); }
Sorry, something went wrong.
No fix for this? I'm having the same issue and don't really want to try fixing it.
No branches or pull requests
Description
In FX2D, tint() causes tinted image to flicker.
Expected Behavior
tint(255,50)
should tint the image, but it flickers between being tinted and being full opacity.Current Behavior
tint()
causes tinted image to flicker.Steps to Reproduce
Calling
tint(255,50)
(for example), then draw an imageimage([image])
, thennoTint()
Your Environment
The text was updated successfully, but these errors were encountered: