Open
Conversation
Collaborator
|
Oh, this is a nice change. How hard is it to just do the actual alpha blending in our compositor so we can return rgba(0,0,0,0) and it does the same thing? Or do you feel that would be weird? |
ppkn
approved these changes
Apr 22, 2026
Collaborator
ppkn
left a comment
There was a problem hiding this comment.
I haven't tested this. But I love it. Thanks for fixing this.
Collaborator
Author
|
I didn't investigate turning on alpha blending, let me take a look and see if that would be better! |
- Add composite-canvas pipeline that un-premultiplies the textu color before blending, to prevent darkening of semi-transpare pixels. - Enabled by the above, use vec4(0.0) instead of discard in all draw pipelines, to allow proper alpha blending of anti-al edges and semi-transparent textures.
3d07d1f to
fd02db8
Compare
Collaborator
Author
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

We aren't alpha-blending the shaders in the final compositing step so even sections of the shaders in the
/drawdirectory that usevec4(0, 0, 0, 0)for transparency end up with black rectangles that bound the shapes they're drawing (e.g. the photo on the left). Usingdiscardwe get the behavior we expect, where overlapping shapes with transparent regions don't block each other.Before | After
Also works on images:
