-
-
Notifications
You must be signed in to change notification settings - Fork 22k
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
Fix GLES3 gaussian_blur
mipmap setup.
#103878
Conversation
I can confirm that this fixes a bug I'm seeing in my project. I have a fragment shader that deforms UV so it looks like the player sinks the floor. In the editor on Linux it looks fine, but in web export there is a darkness that should be transparent: And the following error appears multiple times in the browser console:
You can check for yourself in https://endlessm.github.io/threadbare/branches/endlessm/soft-floor-2/ (shader source code here). After downloading the web export template from this PR artifacts, and exporting the project with it, I can see the bug is gone: |
I need to double check the OpenGL specification. But I think it is supposed to be an error to read and write to the same texture unless the level bound by edit: Indeed, this PR introduces undefined behaviour from the spec:
|
@clayjohn Thanks for review. If I read the spec right, changing the original code from
to
should be ok. It allows for glFramebufferTexture2D to attach level With this neither of the conditions are met that would make behavior undefined
i.e. TEXTURE_MIN_FILTER is GL_LINEAR (so first bullet), but FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL is not set to base |
Extend max level to include i for writing and so fb is complete and avoid resulting errors like: "Framebuffer is incomplete: Attachment level is not in the [base level, max level] range".
@mooflu Good point! In my head we were using Thanks for clearing that up. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks great! I didn't realize earlier, but with the last change we always read from mip level 0 which degraded the quality of the blur. This change fixes the error and maintains the same quality!
In theory, we could probably set GL_TEXTURE_MAX_LEVEL
outside the loop (and avoid resetting it at the end of the function) since we only need to care about the base level, but I am happy either way
edit: note for maintainers, I confirm this is good to cherrypick to earlier versions
Thanks! |
gaussian_blur
mipmap setup.
Cherry-picked for 4.4.1. |
This maintenance release was made a couple of days ago. In particular this should fix a shader bug in the web export that manuq ran into when experimenting with deforming the floor as if made of fabric. https://godotengine.org/article/maintenance-release-godot-4-4-1/ godotengine/godot#103878 (comment) #10 (comment)
Fixes #91717
Extend max level to include
i
for writing and so fb is complete and avoid resulting errors like:"Framebuffer is incomplete: Attachment level is not in the [base level, max level] range".
Removed redundant glBindTexture and moved mipmap level config outside of loop. Main bug was that base and max were set to 'i-1' but glFramebufferTexture2D used 'i' resulting in errors like: "Framebuffer is incomplete: Attachment level is not in the [base level, max level] range".Tested with
--display-driver windows --rendering-driver opengl3_angle
and web build.