bind method
Contents
[
Hide
]bind(self, buffer)
Bind the entire buffer to current descriptor
Returns
Return current instance for chaining operation
def bind(self, buffer):
...
| Parameter | Type | Description |
|---|---|---|
| buffer | IBuffer |
bind(self, texture)
Bind the texture unit to current descriptor set
Returns
Return current instance for chaining operation
def bind(self, texture):
...
| Parameter | Type | Description |
|---|---|---|
| texture | ITextureUnit | The 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):
...
| Parameter | Type | Description |
|---|---|---|
| binding | int | Binding location |
| buffer | IBuffer | The 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):
...
| Parameter | Type | Description |
|---|---|---|
| binding | int | The binding location |
| texture | ITextureUnit | The 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):
...
| Parameter | Type | Description |
|---|---|---|
| buffer | IBuffer | Which buffer to bind |
| offset | int | Offset of the buffer to bind |
| size | int | Size 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):
...
| Parameter | Type | Description |
|---|---|---|
| binding | int | Binding location |
| buffer | IBuffer | The buffer to bind |
| offset | int | Offset of the buffer to bind |
| size | int | Size of the buffer to bind |
See Also
- module
aspose.threed.render - class
DescriptorSetUpdater