diff options
author | José Fonseca <[email protected]> | 2010-04-04 20:12:02 +0100 |
---|---|---|
committer | José Fonseca <[email protected]> | 2010-04-06 15:38:21 +0100 |
commit | 10dd0cad67ebd0476c9e4de522af3eea136b0e93 (patch) | |
tree | 75911690d9cbf1cb72a3ba3e35ebb62510807e9a /src/gallium/auxiliary/Makefile | |
parent | d18d0fdcd8daa0d9979b72978795f0305d2db7c8 (diff) |
util: Support all SRGB formats.
Based on code from Brian Paul and Michal Krol.
Diffstat (limited to 'src/gallium/auxiliary/Makefile')
-rw-r--r-- | src/gallium/auxiliary/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/gallium/auxiliary/Makefile b/src/gallium/auxiliary/Makefile index 843778d8100..2258a486616 100644 --- a/src/gallium/auxiliary/Makefile +++ b/src/gallium/auxiliary/Makefile @@ -107,6 +107,7 @@ C_SOURCES = \ util/u_draw_quad.c \ util/u_format.c \ util/u_format_s3tc.c \ + util/u_format_srgb.c \ util/u_format_table.c \ util/u_format_tests.c \ util/u_gen_mipmap.c \ @@ -169,6 +170,7 @@ GALLIVM_CPP_SOURCES = \ GENERATED_SOURCES = \ indices/u_indices_gen.c \ indices/u_unfilled_gen.c \ + util/u_format_srgb.c \ util/u_format_table.c \ util/u_half.c @@ -193,11 +195,11 @@ indices/u_indices_gen.c: indices/u_indices_gen.py indices/u_unfilled_gen.c: indices/u_unfilled_gen.py python $< > $@ +util/u_format_srgb.c: util/u_format_srgb.py + python $< > $@ + util/u_format_table.c: util/u_format_table.py util/u_format_pack.py util/u_format_parse.py util/u_format.csv python util/u_format_table.py util/u_format.csv > $@ -util/u_format_access.c: util/u_format_access.py util/u_format_parse.py util/u_format.csv - python util/u_format_access.py util/u_format.csv > $@ - util/u_half.c: util/u_half.py python util/u_half.py > $@ |