graphics/texture

    Dark Mode
Search:
Group by:
  Source   Edit

Procs

proc bind_all(textures: seq[Texture]; locations: seq[GLint]) {.
    ...raises: [Exception], tags: [RootEffect].}
  Source   Edit
proc bind_it(texture: Texture; reserve_slot: static[int32] = -1;
             needs_active_texture: static[bool] = false)
  Source   Edit
proc destroy(texture: Texture) {....raises: [Exception], tags: [RootEffect].}
  Source   Edit
proc ensure_storage(self: Texture) {....raises: [Exception], tags: [RootEffect].}
  Source   Edit
proc generateMipmap(self: Texture) {....raises: [Exception], tags: [RootEffect].}
  Source   Edit
proc getTexturePixels(self: Texture): TexturePixels {....raises: [], tags: [].}
  Source   Edit
proc loadCompressedData(self: Texture; data: KtxInfoParts;
                        refdata: seq[SliceMem[byte]]) {....gcsafe,
    raises: [Exception], tags: [RootEffect].}
  Source   Edit
proc loadCubeSideFromPixels(self: Texture; pixels: pointer; side: int32 = 0) {.
    ...raises: [Exception], tags: [RootEffect].}
  Source   Edit
proc loadFromPixels[T](self: Texture; pixels: SliceMem[T]) {....gcsafe.}
  Source   Edit
proc loadFromPixelsPointer(self: Texture; pixels: pointer) {.
    ...raises: [Exception], tags: [RootEffect].}
  Source   Edit
func mipmapCount(self: Texture): int {....raises: [], tags: [].}
  Source   Edit
func mipmapHigh(self: Texture): int {....raises: [], tags: [].}
  Source   Edit
proc needsMipmap(self: Texture): bool {....raises: [], tags: [].}
  Source   Edit
proc newTexture(engine: MyouEngine; name: string; data: SliceMem[byte];
                is_sRGB: bool; filter: TextureFilter = Trilinear; depth = 1;
                flip = true): Texture {....raises: [ValueError, Exception],
                                        tags: [RootEffect].}
  Source   Edit
proc newTexture(engine: MyouEngine; name: string; file_name: string;
                is_sRGB: bool; filter: TextureFilter = Trilinear;
                tex_type: TextureType = Tex2D; flip = true): Texture {.
    ...raises: [Exception, ValueError], tags: [RootEffect].}
  Source   Edit
proc newTexture(engine: MyouEngine; name: string; width, height: int;
                depth: int = 1; format: TextureFormat;
                tex_type: TextureType = Tex2D;
                filter: TextureFilter = Trilinear; pixels: ArrRef[float32] = nil): Texture {.
    ...raises: [Exception], tags: [RootEffect].}
  Source   Edit
proc newTextureStorage(ttype: TextureType; width, height, depth: int;
                       format: TextureFormat): TextureStorage {.
    ...raises: [Exception], tags: [RootEffect].}
  Source   Edit
proc resetNextTextureSlot() {....raises: [], tags: [].}
  Source   Edit
func samplerType(tex_type: TextureType): string {....raises: [], tags: [].}
  Source   Edit
proc set_texture_shadow(self: Texture) {....raises: [Exception], tags: [RootEffect].}
  Source   Edit
proc setExtrapolation(self: Texture; ext: TextureExtrapolation) {.
    ...raises: [Exception], tags: [RootEffect].}
  Source   Edit
proc setFilter(self: Texture; filter: TextureFilter) {....raises: [Exception],
    tags: [RootEffect].}
  Source   Edit
proc setMaxTextures(count: int32) {....raises: [], tags: [].}
  Source   Edit
proc setMipmapRange(self: Texture; first = 0; last = 1000) {....gcsafe,
    raises: [Exception], tags: [RootEffect].}
  Source   Edit
proc setTextureReservedSlots(reserved_slots_bitfield: int32) {....raises: [],
    tags: [].}
  Source   Edit
func texturesNeedBinding(): bool {.inline, ...raises: [], tags: [].}
  Source   Edit
func to_sRGB(format: TextureFormat): TextureFormat {....raises: [ValueError],
    tags: [].}
  Source   Edit
func toInternalFormat(format: TextureFormat): GLenum {....raises: [], tags: [].}
  Source   Edit
proc unbind(texture: Texture) {....raises: [Exception], tags: [RootEffect].}
  Source   Edit
proc unbindAllTextures() {....raises: [Exception], tags: [RootEffect].}
  Source   Edit
proc unset_texture_shadow(self: Texture) {....raises: [Exception],
    tags: [RootEffect].}
  Source   Edit
func vec3size(self: Texture; mip_level = -1): Vec3 {....raises: [], tags: [].}
  Source   Edit

Templates

template samplerType(self: Texture): string
  Source   Edit