GPUBufferBindingLayout


class GPUBufferBindingLayout


Describes the layout of a buffer binding.

Summary

Public constructors

GPUBufferBindingLayout(
    type: Int,
    hasDynamicOffset: Boolean,
    minBindingSize: Long
)

Public properties

Boolean
Long
Int

The type of the buffer binding.

Public constructors

GPUBufferBindingLayout

Added in 1.0.0-alpha04
GPUBufferBindingLayout(
    type: Int = BufferBindingType.Uniform,
    hasDynamicOffset: Boolean = false,
    minBindingSize: Long = 0
)

Public properties

hasDynamicOffset

Added in 1.0.0-alpha04
var hasDynamicOffsetBoolean

minBindingSize

Added in 1.0.0-alpha04
var minBindingSizeLong

type

Added in 1.0.0-alpha04
var typeInt

The type of the buffer binding. Defaults to @see BufferBindingType.Uniform if undefined.