Renderer/ShaderAst: Add input and outputs variables

This commit is contained in:
Lynix
2017-01-05 15:17:34 +01:00
parent f7c4c86934
commit 3ed661f387
4 changed files with 58 additions and 32 deletions

View File

@@ -55,9 +55,11 @@ namespace Nz
enum class VariableType
{
Builtin,
Input,
Output,
Parameter,
Variable,
Uniform
Uniform,
Variable
};
//////////////////////////////////////////////////////////////////////////