vulkan create vertex layout

This commit is contained in:
Greg Wells
2025-06-06 11:41:09 -04:00
parent 35b37c3296
commit ba20d5a958
2 changed files with 35 additions and 3 deletions

View File

@@ -5,6 +5,7 @@
#include <core/shader_module/gryphn_shader_module.h>
#include "utils/math/gryphn_vec2.h"
#include "core/gryphn_handles.h"
#include "core/shader_input/gryphn_shader_layout.h"
typedef enum gnDynamicState_e {
GN_DYNAMIC_VIEWPORT,
@@ -89,6 +90,7 @@ typedef struct gnGraphicsPipelineInfo_t {
uint32_t shaderModuleCount;
gnShaderModuleHandle* shaderModules;
gnShaderInputLayout shaderInputLayout;
} gnGraphicsPipelineInfo;
#ifdef GN_REVEAL_IMPL