[Feat] (MG_Util/ShaderTranspiler): Implement simple shader compile

This commit is contained in:
2025-07-20 19:54:29 +08:00
parent 0388cd316b
commit 18675f72f3
13 changed files with 436 additions and 10 deletions
@@ -0,0 +1,20 @@
//
// Created by Swung 0x48 on 2025/7/20.
//
#ifndef MOBILEGLTEST_SHADERCOMPILER_H
#define MOBILEGLTEST_SHADERCOMPILER_H
namespace MobileGL {
namespace MG_Util {
namespace ShaderTranspiler {
class ShaderCompiler {
public:
static CompilerResult CompileShader(const ShaderAttrib& attrib);
};
}
}
}
#endif //MOBILEGLTEST_SHADERCOMPILER_H