You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the formats seem to be directly tied to the DXGI_FORMAT enum from dxgi.h. Is this a conscious design decision or will it change? Ideally, I am planning to use this library for texture loading for both DirectX and Vulkan, and so a more platform agnostic system would be more useful, as well as allowing support for formats that aren't supported by DXGI_FORMAT (such as double precision pixels)
The text was updated successfully, but these errors were encountered:
I have added support for decoding ktx textures along with support for more pixel formats (still its not exhaustive, there are just too many in opengl).
@john-h-k could you be more specific in which pixel formats you be interested in?
Also some compressions are not yet supported, like astc and etc. Any help in that regard would be very much appreciated.
Currently the formats seem to be directly tied to the
DXGI_FORMAT
enum fromdxgi.h
. Is this a conscious design decision or will it change? Ideally, I am planning to use this library for texture loading for both DirectX and Vulkan, and so a more platform agnostic system would be more useful, as well as allowing support for formats that aren't supported byDXGI_FORMAT
(such asdouble
precision pixels)The text was updated successfully, but these errors were encountered: