aboutsummaryrefslogtreecommitdiff
path: root/src/shader_compiler_test.cc
diff options
context:
space:
mode:
authordan sinclair <dj2@everburning.com>2018-12-05 16:06:32 -0500
committerDavid Neto <dneto@google.com>2018-12-05 16:06:32 -0500
commit048ff06c36359edb8a1da872cc7549c56b772d61 (patch)
tree1a5dd4135242334ce62c3a3a1d34afb2d23395a0 /src/shader_compiler_test.cc
parent1f9a5cb320098c305b8052e66e8264a3d2c3fce5 (diff)
downloadamber-048ff06c36359edb8a1da872cc7549c56b772d61.tar.gz
Break apart Amber::Execute method. (#143)
Break apart Amber::Execute method. This CL splits Amber::Execute into a parse and execute step. The Parse step accepts a Recipe to fill out, that Recipe is then passed into the Execute step. The recipe, in the future, will allow retrieving information about the given script.
Diffstat (limited to 'src/shader_compiler_test.cc')
-rw-r--r--src/shader_compiler_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shader_compiler_test.cc b/src/shader_compiler_test.cc
index 853fe55..4430d96 100644
--- a/src/shader_compiler_test.cc
+++ b/src/shader_compiler_test.cc
@@ -16,7 +16,7 @@
#include "gtest/gtest.h"
#include "src/shader_compiler.h"
-#include "src/vkscript/section_parser.h" // For the passthrough vertex shader
+#include "src/shader_data.h"
namespace amber {
namespace {