diff options
author | Vinson Lee <[email protected]> | 2010-08-14 22:57:47 -0700 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2010-08-14 22:57:47 -0700 |
commit | 4fef77c7c5455b983daa93cacf90d2b3baa3967e (patch) | |
tree | c448763bf2ab24d7950ff157d26638ca72c1857f /src/mesa | |
parent | 9bfbfd55afb42ea54621c8fae99a71db81a7332c (diff) |
glsl: Include missing headers in slang_compile_function.h
Include glheader.h for GL symbols.
Include slang_compile_function.h for slang_function symbol.
Include slang_compile_operation.h for slang_operation symbol.
Include slang_compile_variable.h for slang_variable and
slang_variable_scope symbols.
Include slang_log.h for slang_info_log symbols.
Include slang_utility.h for slang_atom and slang_atom_pool symbols.
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/slang/slang_compile_function.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/mesa/slang/slang_compile_function.h b/src/mesa/slang/slang_compile_function.h index a5445ec2537..4def121f7ac 100644 --- a/src/mesa/slang/slang_compile_function.h +++ b/src/mesa/slang/slang_compile_function.h @@ -25,6 +25,15 @@ #ifndef SLANG_COMPILE_FUNCTION_H #define SLANG_COMPILE_FUNCTION_H +#include "main/glheader.h" +#include "slang_compile_function.h" +#include "slang_compile_operation.h" +#include "slang_compile_variable.h" +#include "slang_log.h" +#include "slang_utility.h" + +struct slang_name_space_; +struct slang_operation_; /** * Types of functions. |