Renderer/ShaderAst: Rename Builtin enum to BuiltinEntry

This commit is contained in:
Lynix
2017-01-06 13:47:05 +01:00
parent b4ff55c50c
commit 8fcd2f1886
6 changed files with 10 additions and 10 deletions

View File

@@ -27,7 +27,7 @@ namespace Nz { namespace ShaderBuilder
struct BuiltinBuilder
{
std::shared_ptr<ShaderAst::Variable> operator()(ShaderAst::Builtin builtin) const;
std::shared_ptr<ShaderAst::Variable> operator()(ShaderAst::BuiltinEntry builtin) const;
};
template<typename T>