summaryrefslogtreecommitdiff
path: root/main/tests/test_shader_lang.cpp
diff options
context:
space:
mode:
authorYuri Roubinsky <chaosus89@gmail.com>2020-02-11 21:58:41 +0300
committerGitHub <noreply@github.com>2020-02-11 21:58:41 +0300
commit31e4ae826e3ee45a86b0bbe1279db1602cf8341e (patch)
tree959ce4d147c95cd5ae859cf4e66d5d9dc57e7ff0 /main/tests/test_shader_lang.cpp
parente9d9fef7208b21fc963e9064e8d3337ab8769ca2 (diff)
parent6f162395ffb5f54a8530172621c2978b6f0cb4eb (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.cpp3
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;