We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
BGFX Example : https://rdtesthtml5.s3.eu-west-1.amazonaws.com/Issam/Bug_iOS18/example-09-hdrDebug.html We noticed that our product no longer works on iOS 18 with Chrome and Safari. Upon investigation, I found that we can fix this issue by using immutable textures: using glTexStorage2D + glTexSubImage2D instead of glTexImage2D After applying this workaround (issam3105@7cfbdfe), the issue is temporarily resolved, but a full fix is still required BGFX Example after workaround: https://rdtesthtml5.s3.eu-west-1.amazonaws.com/Issam/Bug_iOS18/workaround/example-09-hdrDebug.html
glTexStorage2D
glTexSubImage2D
glTexImage2D
The text was updated successfully, but these errors were encountered:
No branches or pull requests
BGFX Example : https://rdtesthtml5.s3.eu-west-1.amazonaws.com/Issam/Bug_iOS18/example-09-hdrDebug.html
We noticed that our product no longer works on iOS 18 with Chrome and Safari. Upon investigation, I found that we can fix this issue by using immutable textures: using
glTexStorage2D
+glTexSubImage2D
instead ofglTexImage2D
After applying this workaround (issam3105@7cfbdfe), the issue is temporarily resolved, but a full fix is still required
BGFX Example after workaround: https://rdtesthtml5.s3.eu-west-1.amazonaws.com/Issam/Bug_iOS18/workaround/example-09-hdrDebug.html
The text was updated successfully, but these errors were encountered: