summaryrefslogtreecommitdiff
path: root/source/libs/asura-lib-core/graphics/binding/shader.binding.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/libs/asura-lib-core/graphics/binding/shader.binding.cpp')
-rw-r--r--source/libs/asura-lib-core/graphics/binding/shader.binding.cpp114
1 files changed, 0 insertions, 114 deletions
diff --git a/source/libs/asura-lib-core/graphics/binding/shader.binding.cpp b/source/libs/asura-lib-core/graphics/binding/shader.binding.cpp
deleted file mode 100644
index 2f2f507..0000000
--- a/source/libs/asura-lib-core/graphics/binding/shader.binding.cpp
+++ /dev/null
@@ -1,114 +0,0 @@
-#include "../shader.h"
-
-using namespace Luax;
-
-namespace AsuraEngine
-{
- namespace Graphics
- {
-
- void Shader::RegisterLuaxClass(LuaxState& state)
- {
-
- LuaxEnum EBuiltIn[] = {
- {0, 0}
- };
-
- state.RegisterEnum("EBuiltIn", EBuiltIn);
-
- }
-
- void Shader::RegisterLuaxPostprocess(LuaxState& state)
- {
-
- }
-
- ///
- /// shaderΪ
- ///
- int Shader::l_Use(lua_State* L)
- {
- LUAX_STATE(L);
-
- }
-
- ///
- /// shaderΪǻ
- ///
- int Shader::l_Unuse(lua_State* L)
- {
- LUAX_STATE(L);
-
- }
-
- ///
- /// ɫйshaderɹtrueʧܷfalse
- ///
- int Shader::l_Load(lua_State* L)
- {
- LUAX_STATE(L);
-
- }
-
- ///
- /// жshaderǷuniformзtrue,򷵻false
- ///
- int Shader::l_HasUniform(lua_State* L)
- {
- LUAX_STATE(L);
-
- }
-
- ///
- /// uniformslocationûuniformnil򷵻ضӦloc
- ///
- int Shader::l_GetUniformLocation(lua_State* L)
- {
- LUAX_STATE(L);
-
- }
-
- int Shader::l_SetBuiltInUniforms(lua_State* L)
- {
- LUAX_STATE(L);
-
- }
-
- int Shader::l_SetUniformFloat(lua_State* L)
- {
- LUAX_STATE(L);
-
- }
-
- int Shader::l_SetUniformTexture(lua_State* L)
- {
- LUAX_STATE(L);
-
- }
-
- int Shader::l_SetUniformVector2(lua_State* L)
- {
- LUAX_STATE(L);
-
- }
-
- int Shader::l_SetUniformVector3(lua_State* L)
- {
- LUAX_STATE(L);
-
- }
-
- int Shader::l_SetUniformVector4(lua_State* L)
- {
- LUAX_STATE(L);
-
- }
-
- int Shader::l_SetUniformColor(lua_State* L)
- {
- LUAX_STATE(L);
-
- }
-
- }
-} \ No newline at end of file