pyktx.ktx_texture1 module

class pyktx.ktx_texture1.KtxTexture1(ptr: c_ulong)[source]

Bases: KtxTexture

Class representing a KTX version 1 format texture.

static create(create_info: KtxTextureCreateInfo, storage_allocation: KtxTextureCreateStorage) KtxTexture1[source]

Create a new empty KtxTexture1.

static create_from_named_file(filename: str, create_flags: int = KtxTextureCreateFlagBits.NO_FLAGS) KtxTexture1[source]

Create a KtxTexture1 from a named KTX file according to the file contents.

property gl_baseinternalformat: int

Base format of the texture data, e.g., GL_RGB.

You can find all OpenGL formats here: <https://registry.khronos.org/OpenGL/api/GL/glcorearb.h>

property gl_format: int

Format of the texture data, e.g. GL_RGB.

You can find all OpenGL formats here: <https://registry.khronos.org/OpenGL/api/GL/glcorearb.h>

property gl_internalformat: int

Internal format of the texture data. See GlInternalformat.

You can find all OpenGL internal formats here: <https://registry.khronos.org/OpenGL/api/GL/glext.h>

property gl_type: int

Type of the texture data, e.g, GL_UNSIGNED_BYTE.

You can find all OpenGL data types here: <https://registry.khronos.org/OpenGL/api/GL/glcorearb.h>