-
-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Suggestion: provide shader for each p5js filter #4820
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
Comments
Interesting idea! @aferriss has already done most (all?) of the hard work for this in this repo. Typically, I would direct a student to this repo when I was suggesting this route. But perhaps it is worth the addition to library size (likely small) to have these as p5.Shader constants. Performance is really important to consider right now and definitely falls under the umbrella of accessibility. Working with students through Zoom, I am painfully aware of the hard limits that students are hitting with performance. This is exacerbated by the fact that many students are using home computers for the first time when they have used school lab computers (which often have superior hardware) in the past. For sketches that rely heavily on images with filters, the performance gains with WEBGL and shaders will be very significant. |
Exactly -- I think it would largely be a question of syncing up the names. And seems a good thing to do whether or not we want to have them invoked automatically when using the GL renderer. |
This sounds like a great idea to me! 💜 |
Hey, I would like to help with that issue, would just the .vert and .frag files be enough? Or do I have to convert them somehow into Shader object? |
@JalokimFreelance i think that would be enough! i'm 90% sure we already have some build process for inlining shader files into the p5.js lib. |
I spent some time looking at how this might work. What do you think of the approach here? The shaders for each filter would be files that are handled the same way as other default shaders. The method ( Update: Here is a more robust version that creates a new canvas/buffer via |
@stalgiag What do you think? |
Thanks for the draft @JetStarBlues ! I think using |
Hey all, just a heads up that I'll be tackling this as part of my GSoC 2023 project in the coming weeks. I'll link to a PR when I make one. Looking forward to working on it! |
Suggestion: make available the set of filters in p5js (currently THRESHOLD, GRAY, OPAQUE, INVERT, POSTERIZE, BLUR, ERODE, DILATE) as shaders (with the same names), so that users can more easily port sketches between default and WEBGL renderers.
USE-CASE: Student has performance problems in sketch using filters. Instructor would like to suggest WEBGL, but the filter doesn't exist as a shader (or is not easily found).
Another option would be to have the filter call actually work in WEBGL by loading/invoking the correct shader automatically.
Most appropriate sub-area of p5.js?
The text was updated successfully, but these errors were encountered: