diff options
author | Rob Herring <[email protected]> | 2018-01-08 15:17:48 -0600 |
---|---|---|
committer | Rob Herring <[email protected]> | 2018-01-10 14:56:09 -0600 |
commit | af8fd389961aabdac0a5b0e6171b17950a659f30 (patch) | |
tree | d9bf083f7c39ca519c2ec2233bbc1b8ecf69483e /src/gallium/auxiliary | |
parent | 5c4081d66d4a45d20e7520c6b6411135780b6bdd (diff) |
tgsi: include struct definitions for tgsi_build declarations
Many of the functions declared in tgsi_build.h return structs (not struct
pointers). Therefore the full struct definitions are needed to avoid
warnings or errors:
In file included from src/gallium/drivers/nouveau/codegen/nv50_ir_from_tgsi.cpp:23:
external/mesa3d/src/gallium/auxiliary/tgsi/tgsi_build.h:47:1: error: 'tgsi_build_header' has C-linkage specified, but returns incomplete type 'struct tgsi_header' which could be incompatible with C [-Werror,-Wreturn-type-c-linkage]
This error shows up on Android builds using clang and -Werror.
Cc: Ilia Mirkin <[email protected]>
Signed-off-by: Rob Herring <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary')
-rw-r--r-- | src/gallium/auxiliary/tgsi/tgsi_build.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/gallium/auxiliary/tgsi/tgsi_build.h b/src/gallium/auxiliary/tgsi/tgsi_build.h index 53f31932c02..31de76fe532 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_build.h +++ b/src/gallium/auxiliary/tgsi/tgsi_build.h @@ -28,11 +28,7 @@ #ifndef TGSI_BUILD_H #define TGSI_BUILD_H - -struct tgsi_token; -struct tgsi_full_dst_register; -struct tgsi_full_src_register; - +#include "tgsi/tgsi_parse.h" #if defined __cplusplus extern "C" { |