TextureAspect


class TextureAspect


Specifies which aspect of a texture is being referenced.

Summary

Constants

const Int
All = 1

All aspects of the texture.

const Int

The depth aspect of a depth-stencil texture.

const Int

The stencil aspect of a depth-stencil texture.

const Int

Indicates that no texture aspect is specified.

Public companion functions

String
toString(value: Int)

Constants

All

const val All = 1: Int

All aspects of the texture.

DepthOnly

const val DepthOnly = 3: Int

The depth aspect of a depth-stencil texture.

StencilOnly

const val StencilOnly = 2: Int

The stencil aspect of a depth-stencil texture.

Undefined

const val Undefined = 0: Int

Indicates that no texture aspect is specified.

Public companion functions

toString

Added in 1.0.0-alpha05
fun toString(value: Int): String