Skip to content
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

In FX2D, tint() causes tinted image to flicker #10

Open
orglennon opened this issue Jun 28, 2018 · 2 comments
Open

In FX2D, tint() causes tinted image to flicker #10

orglennon opened this issue Jun 28, 2018 · 2 comments
Labels
help wanted Many hands make light work. Please help!

Comments

@orglennon
Copy link

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 image image([image]), then noTint()

Your Environment

  • On Mac OS High Sierra, MacBook Pro 2017 with touch bar
  • Running Processing (pulled today 6/28/18) in Eclipse
@jeremydouglass
Copy link

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();
}

@benfry benfry transferred this issue from processing/processing Jan 16, 2022
@benfry benfry added the help wanted Many hands make light work. Please help! label Jan 16, 2022
@dgray001
Copy link

No fix for this? I'm having the same issue and don't really want to try fixing it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
help wanted Many hands make light work. Please help!
Projects
None yet
Development

No branches or pull requests

4 participants