diff options
author | Brian Paul <[email protected]> | 2012-01-05 08:30:00 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2012-01-05 09:01:43 -0700 |
commit | 85b5dac705fcf3fafb734696e1f863cfc21e2d6e (patch) | |
tree | fe4596433fca3a13756e90a94aa57ac0a8bc8235 /src/gallium/auxiliary/Makefile.sources | |
parent | 188aca34923d109323e0e1a882c69f2b422b5cae (diff) |
tgsi: consolidate TGSI string arrays in new tgsi_strings.h
There was some duplication between the tgsi_dump.c and tgsi_text.c
files. Also use some static assertions to help catch errors when
adding new TGSI values.
v2: put strings in tgsi_strings.c file instead of the .h file.
Reviewed-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/Makefile.sources')
-rw-r--r-- | src/gallium/auxiliary/Makefile.sources | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/Makefile.sources b/src/gallium/auxiliary/Makefile.sources index d40b95451f0..f55a4eb8451 100644 --- a/src/gallium/auxiliary/Makefile.sources +++ b/src/gallium/auxiliary/Makefile.sources @@ -73,6 +73,7 @@ C_SOURCES := \ tgsi/tgsi_ppc.c \ tgsi/tgsi_sanity.c \ tgsi/tgsi_scan.c \ + tgsi/tgsi_strings.c \ tgsi/tgsi_text.c \ tgsi/tgsi_transform.c \ tgsi/tgsi_ureg.c \ |