-
Notifications
You must be signed in to change notification settings - Fork 231
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
ktx create
should warn about images that exceed common GPU maximum texture dimensions
#383
Comments
NVIDIA GeForce 10xx and newer supports 32,768 1D and 32,768x32,768 2D textures, so why is the proposed limit 16,384? |
Available VRAM gets bigger with each new GPU generation, so max texture dimensions would follow. |
Because that is the limit on the majority of GPUs atm. The error is intended to be a hard warning that hey you need to look at this. If you've explicitly indicated the size you want then it turns into a warning. It needs an additional way to override other than resize or scale for use in the case of keeping the size as is. |
@lexaknyazev does |
The original spec for |
Thanks @lexaknyazev. |
ktx create
should warn about images that exceed common GPU maximum texture dimensions
This stems from issue #373. Two things needs to be done:
Question: should
toktx
allow texture sizes > 32768. I doubt any GPU supports texture sizes larger than that.The text was updated successfully, but these errors were encountered: