diff options
author | Vinson Lee <[email protected]> | 2010-12-30 01:40:53 -0800 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2010-12-30 01:40:53 -0800 |
commit | 20a0f342833b61ebbfb0b8c622fd0c18fad59b7d (patch) | |
tree | 4ff611ed51c08231b7de596020f9934509a5356f /src/gallium/auxiliary/tgsi/tgsi_sanity.h | |
parent | 79fa5acf26d02760d745be435d1b0a28e485a4d6 (diff) |
tgsi: Clean up header file inclusion in tgsi_sanity.h.
Diffstat (limited to 'src/gallium/auxiliary/tgsi/tgsi_sanity.h')
-rw-r--r-- | src/gallium/auxiliary/tgsi/tgsi_sanity.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/gallium/auxiliary/tgsi/tgsi_sanity.h b/src/gallium/auxiliary/tgsi/tgsi_sanity.h index 73f0f414e3f..707d11ec6dd 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_sanity.h +++ b/src/gallium/auxiliary/tgsi/tgsi_sanity.h @@ -28,12 +28,14 @@ #ifndef TGSI_SANITY_H #define TGSI_SANITY_H -#include "pipe/p_shader_tokens.h" - #if defined __cplusplus extern "C" { #endif +#include "pipe/p_compiler.h" + +struct tgsi_token; + /* Check the given token stream for errors and common mistakes. * Diagnostic messages are printed out to the debug output, and is * controlled by the debug option TGSI_PRINT_SANITY (default false). |