TextureViewDimension


class TextureViewDimension


Defines the dimensionality of a texture view.

Summary

Constants

const Int
Cube = 4

A cube map texture view.

const Int

A cube map array texture view.

const Int

Indicates that no texture view dimension is specified.

const Int
_1D = 1

A one-dimensional texture view.

const Int
_2D = 2

A two-dimensional texture view.

const Int

A two-dimensional array texture view.

const Int
_3D = 6

A three-dimensional texture view.

Public companion functions

String
toString(value: Int)

Constants

Cube

const val Cube = 4: Int

A cube map texture view.

CubeArray

const val CubeArray = 5: Int

A cube map array texture view.

Undefined

const val Undefined = 0: Int

Indicates that no texture view dimension is specified.

_1D

const val _1D = 1: Int

A one-dimensional texture view.

_2D

const val _2D = 2: Int

A two-dimensional texture view.

_2DArray

const val _2DArray = 3: Int

A two-dimensional array texture view.

_3D

const val _3D = 6: Int

A three-dimensional texture view.

Public companion functions

toString

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