bind method

bind

Bind the entire buffer to current descriptor

Returns

Return current instance for chaining operation

def bind(self, buffer):
    ...
ParameterTypeDescription
bufferIBuffer

bind

Bind the texture unit to current descriptor set

Returns

Return current instance for chaining operation

def bind(self, texture):
    ...
ParameterTypeDescription
textureITextureUnitThe texture unit to bind

bind

Bind the buffer to current descriptor set at specified binding location.

Returns

Return current instance for chaining operation

def bind(self, binding, buffer):
    ...
ParameterTypeDescription
bindingintBinding location
bufferIBufferThe entire buffer to bind

bind

Bind the texture unit to current descriptor set

Returns

Return current instance for chaining operation

def bind(self, binding, texture):
    ...
ParameterTypeDescription
bindingintThe binding location
textureITextureUnitThe texture unit to bind

bind

Bind the buffer to current descriptor set

Returns

Return current instance for chaining operation

def bind(self, buffer, offset, size):
    ...
ParameterTypeDescription
bufferIBufferWhich buffer to bind
offsetintOffset of the buffer to bind
sizeintSize of the buffer to bind

bind

Bind the buffer to current descriptor set at specified binding location.

Returns

Return current instance for chaining operation

def bind(self, binding, buffer, offset, size):
    ...
ParameterTypeDescription
bindingintBinding location
bufferIBufferThe buffer to bind
offsetintOffset of the buffer to bind
sizeintSize of the buffer to bind

See Also