Renderer/ShaderAst: Rename Builtin enum to BuiltinEntry

This commit is contained in:
Lynix
2017-01-06 13:47:05 +01:00
parent a60836c45a
commit 8fd152aec0
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>