diff options
author | Ian Romanick <[email protected]> | 2016-10-14 11:02:18 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2017-01-20 15:41:23 -0800 |
commit | aa38bf1e593eba3e65c4e10154410158d6d263c5 (patch) | |
tree | d569962d62d14b763ebc6690970b5b615eb286c2 /src/compiler/glsl/ast_function.cpp | |
parent | 8358e58f2534f7e60c452bed2adb628d75b055c3 (diff) |
glsl: Move builtin_function related prototypes to a separate file
Signed-off-by: Ian Romanick <[email protected]>
Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'src/compiler/glsl/ast_function.cpp')
-rw-r--r-- | src/compiler/glsl/ast_function.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/compiler/glsl/ast_function.cpp b/src/compiler/glsl/ast_function.cpp index 2a2c17bd42c..0665e0c3938 100644 --- a/src/compiler/glsl/ast_function.cpp +++ b/src/compiler/glsl/ast_function.cpp @@ -27,6 +27,7 @@ #include "ir.h" #include "main/core.h" /* for MIN2 */ #include "main/shaderobj.h" +#include "builtin_functions.h" static ir_rvalue * convert_component(ir_rvalue *src, const glsl_type *desired_type); |