Dave Pagurek
Dave Pagurek
Thanks @AryanKoundal, I'll assign this to you!
Ah, I realize the `_dirty` flag is for `ImageData`, not images, so it is still checking for `isModified()` here: https://github.com/processing/p5.js/blob/05c93858bcf2ed8f7b1c4362cd459c8312369112/src/webgl/p5.Texture.js#L209 Do you know if it's going through this branch at...
Update: It looks like the issue might be because in `texture()` and `image()` we check if the argument is a gif and call `_animateGif` if so: https://github.com/processing/p5.js/blob/00821f33ca1d8a6990364568f0374c4aaf713faa/src/core/p5.Renderer2D.js#L159-L161 Maybe we need...
I'm going to close this issue now that https://github.com/processing/p5.js/pull/5159/ is merged in! Feel free to continue the discussion in case there are other cases that PR didn't handle.
Thanks for taking this on, it's looking good! I noticed a few little things to update: - In `src/webgl/p5.Camera.js` it looks like you've updated it to use `this.modelMatrix` and `this.viewMatrix`...
Hi! This should be fixed as of https://github.com/processing/p5.js/pull/5914, so I'm going to close this for organizational purposes. This is not yet released, but once the next p5 version is out...
Hey @sypyyy, would you mind elaborating on what you mean by a background color? Is that the same as calling e.g. `background('#F00')` after creating a graphic to make it red?...
Hi, thanks for reporting this! As @stalgiag mentioned, this is an issue related to how transparent images are rendered, so for organizational purposes, I'm going to close this issue in...
I recently added support in the [p5.Framebuffer library](https://github.com/davepagurek/p5.Framebuffer) for that antialiasing solution I mentioned earlier (WebGL2 antialiasing if available, or rendering at 2x pixel density otherwise.) I'm hoping to learn...
After talking to other maintainers about this, we've decided to make Framebuffer objects that one can use as an alternative to p5.Graphics for WebGL only environments: https://github.com/processing/p5.js/issues/6018 This means, at...