enum
PackedImageCopyMode
Certain, older versions of the Nvidia OpenGL driver for certain graphics cards crash when trying to copy a texture to a texture array when the texture is compressed with a block-based format and has a mip-map with dimensions which are not a multiple of the block size. This enum configures how to copy such textures.
Fields
Name | Description |
---|---|
Blind | Copy the texture without checking if all mip levels are multiples of block size. |
Skip | Skip copying mip-levels when the dimensions are not a multiple of block size. You should only use this if you encounter issues. |