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
I got two warnings when importing dds in GIMP.
It uses DDSD_PITCH when it should use DDSD_LINEARSIZE. And it uses DDSD_LINEARSIZE when it should use DDSD_PITCH.
dds.py says
class DDS_FLAGS(IntEnum): PITCH = 0x8 # Use "w * h * bpp" for pitch_or_linear_size LINEARSIZE = 0x80000 # Use "w * bpp" for pitch_or_linear_size
but it should be
class DDS_FLAGS(IntEnum): PITCH = 0x8 # Use "w * bpp" for pitch_or_linear_size LINEARSIZE = 0x80000 # Use "w * h * bpp" for pitch_or_linear_size
Most of dds libraries don't care the flags but this should be fixed.
The text was updated successfully, but these errors were encountered:
Fixed with #23. I'll close this issue with v0.4.2 release.
Sorry, something went wrong.
No branches or pull requests
I got two warnings when importing dds in GIMP.
It uses DDSD_PITCH when it should use DDSD_LINEARSIZE.
And it uses DDSD_LINEARSIZE when it should use DDSD_PITCH.
dds.py says
but it should be
Most of dds libraries don't care the flags but this should be fixed.
The text was updated successfully, but these errors were encountered: