create cpp files and functions for OpenGL shaders

This commit is contained in:
Gregory Wells
2025-08-12 20:27:41 -04:00
parent 317ffda9e7
commit c51c29f7a4
5 changed files with 20 additions and 2 deletions

View File

@@ -0,0 +1,9 @@
#include "opengl_shader_module.h"
// #include "stdio.h"
gnReturnCode openglCreateShaderModule(gnShaderModule module, gnDevice device, gnShaderModuleInfo shaderModuleInfo) {
return GN_SUCCESS;
}
void openglDestroyShaderModule(gnShaderModule module) {
}