diff options
author | Yuri Roubinsky <chaosus89@gmail.com> | 2020-02-11 21:58:41 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-11 21:58:41 +0300 |
commit | 31e4ae826e3ee45a86b0bbe1279db1602cf8341e (patch) | |
tree | 959ce4d147c95cd5ae859cf4e66d5d9dc57e7ff0 /main/tests/test_shader_lang.cpp | |
parent | e9d9fef7208b21fc963e9064e8d3337ab8769ca2 (diff) | |
parent | 6f162395ffb5f54a8530172621c2978b6f0cb4eb (diff) |
Merge pull request #35249 from Chaosus/shader_struct
Implementation of 'struct' for shaders
Diffstat (limited to 'main/tests/test_shader_lang.cpp')
-rw-r--r-- | main/tests/test_shader_lang.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/main/tests/test_shader_lang.cpp b/main/tests/test_shader_lang.cpp index cac5b95635..1e0f3c6425 100644 --- a/main/tests/test_shader_lang.cpp +++ b/main/tests/test_shader_lang.cpp @@ -163,6 +163,9 @@ static String dump_node_code(SL::Node *p_node, int p_level) { //code+=dump_node_code(pnode->body,p_level); } break; + case SL::Node::TYPE_STRUCT: { + + } break; case SL::Node::TYPE_FUNCTION: { } break; |