finish the most basic rendering pipeline

This commit is contained in:
Gregory Wells
2025-08-19 16:31:19 -04:00
parent 50d8a669b3
commit 7f6ec430de
9 changed files with 113 additions and 23 deletions

View File

@@ -14,11 +14,11 @@ gnCommandFunctions loadOpenGLCommandFunctions() {
._gnCommandBeginRenderPass = openglBeginRenderPass,
._gnCommandEndRenderPass = openglEndRenderPass,
._gnCommandBindGraphicsPipeline = NULL,
._gnCommandSetViewport = NULL,
._gnCommandSetScissor = NULL,
._gnCommandBindUniform = NULL,
._gnCommandPushConstant = NULL,
._gnCommandBindGraphicsPipeline = openglBindGraphicsPipeline,
._gnCommandSetViewport = openglSetViewport,
._gnCommandSetScissor = openglSetScissor,
._gnCommandBindUniform = openglBindUniform,
._gnCommandPushConstant = openglPushConstant,
._gnCommandBindBuffer = openglBindBuffer,
._gnCommandDraw = openglDraw,