StorageTextureAccess


class StorageTextureAccess


Defines the access mode for a storage texture binding.

Summary

Constants

const Int

Indicates that this binding is not used.

const Int

Read-only access.

const Int

Read-write access.

const Int

Indicates that no storage texture access mode is specified.

const Int

Write-only access.

Public companion functions

String
toString(value: Int)

Constants

BindingNotUsed

const val BindingNotUsed = 0: Int

Indicates that this binding is not used.

ReadOnly

const val ReadOnly = 3: Int

Read-only access.

ReadWrite

const val ReadWrite = 4: Int

Read-write access.

Undefined

const val Undefined = 1: Int

Indicates that no storage texture access mode is specified.

WriteOnly

const val WriteOnly = 2: Int

Write-only access.

Public companion functions

toString

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