pyktx.ktx_texture_create_info module
- class pyktx.ktx_texture_create_info.KtxTextureCreateInfo(gl_internal_format: GlInternalformat | None, base_width: int, base_height: int, base_depth: int, vk_format: VkFormat = VkFormat.VK_FORMAT_UNDEFINED, num_dimensions: int = 2, num_levels: int = 1, num_layers: int = 1, num_faces: int = 1, is_array: bool = False, generate_mipmaps: bool = False)[source]
Bases:
object
Data for passing texture information to KtxTexture1.create() and KtxTexture2.create().
- base_depth: int
Depth of the base level of the texture.
- base_height: int
Height of the base level of the texture.
- base_width: int
Width of the base level of the texture.
- generate_mipmaps: bool = False
Set to true if mipmaps should be generated for the texture when loading into a 3D API.
- gl_internal_format: GlInternalformat | None
Internal format for the texture, e.g., GlInteralformat.RGB8. Ignored when creating a KtxTexture2.
- is_array: bool = False
Set to true if the texture is to be an array texture. Means OpenGL will use a GL_TEXTURE_*_ARRAY target.
- num_dimensions: int = 2
Number of dimensions in the texture, 1, 2 or 3.
- num_faces: int = 1
6 for cube maps, 1 otherwise.
- Type:
Number of faces
- num_layers: int = 1
Number of array layers in the texture.
- num_levels: int = 1
Number of mip levels in the texture. Should be 1 if generateMipmaps is true.