diff options
author | chai <chaifix@163.com> | 2019-03-17 09:12:29 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2019-03-17 09:12:29 +0800 |
commit | fb830270c5269a22819a0c0f1ee280f9aa3f1b39 (patch) | |
tree | 9934c1e60cdc015c6e9ece18a2fd042cf9dfeaa0 /Source/Asura.Engine/graphics/binding/shader.binding.cpp | |
parent | d29f5f4aebd90b1e256967801b28a5990249b2e7 (diff) |
*luax
Diffstat (limited to 'Source/Asura.Engine/graphics/binding/shader.binding.cpp')
-rw-r--r-- | Source/Asura.Engine/graphics/binding/shader.binding.cpp | 44 |
1 files changed, 22 insertions, 22 deletions
diff --git a/Source/Asura.Engine/graphics/binding/shader.binding.cpp b/Source/Asura.Engine/graphics/binding/shader.binding.cpp index 3f24bb7..1190997 100644 --- a/Source/Asura.Engine/graphics/binding/shader.binding.cpp +++ b/Source/Asura.Engine/graphics/binding/shader.binding.cpp @@ -1,4 +1,4 @@ -#include "../Shader.h" +#include "../shader.h" using namespace Luax; @@ -7,6 +7,27 @@ namespace AsuraEngine namespace Graphics { + void Shader::RegisterLuaxInterface(LuaxState& state) + { + + } + + void Shader::RegisterLuaxClass(LuaxState& state) + { + + LuaxEnum EBuiltIn[] = { + {0, 0} + }; + + state.RegisterEnum("EBuiltIn", EBuiltIn); + + } + + void Shader::RegisterLuaxPostprocess(LuaxState& state) + { + + } + /// /// shaderΪ /// @@ -94,26 +115,5 @@ namespace AsuraEngine } - void Shader::RegisterLuaxInterface(LuaxState& state) - { - - } - - void Shader::RegisterLuaxClass(LuaxState& state) - { - - LuaxEnum EBuiltIn[] = { - {0, 0} - }; - - state.RegisterEnum("EBuiltIn", EBuiltIn); - - } - - void Shader::RegisterLuaxPostprocess(LuaxState& state) - { - - } - } }
\ No newline at end of file |