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

Fix binding of texture() #7668

Merged
merged 1 commit into from
Mar 25, 2025
Merged

Fix binding of texture() #7668

merged 1 commit into from
Mar 25, 2025

Conversation

davepagurek
Copy link
Contributor

Resolves #7665

Changes

Previously, we fixed a bug where a texture bound to a shader would unbind after its first use. So, textures stay bound. This lead to a scenario where if you draw using a framebuffer as a texture once:

texture(myFramebuffer)

...then if you later try to draw to that framebuffer, even without a texture applied, it would cause a feedback cycle since the framebuffer is still bound to the shader:

myFramebuffer.draw(() => {
  lights()
  circle(0, 0, 20) // Logs an error, doesn't draw anything in firefox
})

The problem is that we were using texture() to bind a texture, but when no texture is applied (e.g. after a pop()), we we're unbinding.

PR Checklist

@davepagurek davepagurek merged commit cf37090 into dev-2.0 Mar 25, 2025
2 checks passed
@davepagurek davepagurek deleted the fix/texture-binding branch March 25, 2025 12:54
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant