Update ShaderNode

This commit is contained in:
Lynix
2020-05-19 20:06:32 +02:00
parent e23eb74802
commit effaa9b88f
17 changed files with 646 additions and 84 deletions

View File

@@ -0,0 +1,11 @@
#include <ShaderGraph.hpp>
inline QtNodes::FlowScene& ShaderGraph::GetScene()
{
return m_flowScene;
}
inline auto ShaderGraph::GetTextures() -> const std::vector<TextureEntry>&
{
return m_textures;
}