bind uniforms

This commit is contained in:
Greg Wells
2025-06-08 14:21:34 -04:00
parent 86c903e73c
commit a68e8df28e
6 changed files with 24 additions and 6 deletions

View File

@@ -17,6 +17,9 @@ void gnCommandSetViewport(struct gnCommandBuffer_t* buffer, struct gnViewport_t
void gnCommandSetScissor(struct gnCommandBuffer_t* buffer, struct gnScissor_t scissor) {
buffer->commandPool->commandFunctions->_gnCommandSetScissor(buffer, scissor);
}
void gnCommandBindUniform(gnCommandBufferHandle buffer, gnUniform uniform) {
buffer->commandPool->commandFunctions->_gnCommandBindUniform(buffer, uniform);
}
void gnCommandBindBuffer(gnCommandBufferHandle buffer, gnBufferHandle bufferToBind, gnBufferType type) {
buffer->commandPool->commandFunctions->_gnCommandBindBuffer(buffer, bufferToBind, type);
}