bind method

bind(self, buffer)

Bind the entire buffer to current descriptor

Returns

Return current instance for chaining operation


def bind(self, buffer):
    ...
ParameterTypeDescription
bufferaspose.threed.render.IBuffer

bind(self, texture)

Bind the texture unit to current descriptor set

Returns

Return current instance for chaining operation


def bind(self, texture):
    ...
ParameterTypeDescription
textureaspose.threed.render.ITextureUnitThe texture unit to bind

bind(self, binding, buffer)

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
bufferaspose.threed.render.IBufferThe entire buffer to bind

bind(self, binding, texture)

Bind the texture unit to current descriptor set

Returns

Return current instance for chaining operation


def bind(self, binding, texture):
    ...
ParameterTypeDescription
bindingintThe binding location
textureaspose.threed.render.ITextureUnitThe texture unit to bind

bind(self, buffer, offset, size)

Bind the buffer to current descriptor set

Returns

Return current instance for chaining operation


def bind(self, buffer, offset, size):
    ...
ParameterTypeDescription
bufferaspose.threed.render.IBufferWhich buffer to bind
offsetintOffset of the buffer to bind
sizeintSize of the buffer to bind

bind(self, binding, buffer, offset, size)

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
bufferaspose.threed.render.IBufferThe buffer to bind
offsetintOffset of the buffer to bind
sizeintSize of the buffer to bind

See Also