diff options
author | Topi Pohjolainen <[email protected]> | 2013-12-05 19:16:02 +0200 |
---|---|---|
committer | Topi Pohjolainen <[email protected]> | 2013-12-27 11:59:03 +0200 |
commit | 812f1e94c0a4a9644b012851fb22a27efdbd26d0 (patch) | |
tree | 791563b00cc2cfc215fdf92b98300c438249be85 /src/mesa/drivers/dri/i965/Makefile.am | |
parent | a7757bf518d15f171d260784da9c655c4faef8e6 (diff) |
i965/blorp: unit test compiling blend and scaled
Signed-off-by: Topi Pohjolainen <[email protected]>
Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/Makefile.am')
-rw-r--r-- | src/mesa/drivers/dri/i965/Makefile.am | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/Makefile.am b/src/mesa/drivers/dri/i965/Makefile.am index 3b46af8675e..a2c3b32da88 100644 --- a/src/mesa/drivers/dri/i965/Makefile.am +++ b/src/mesa/drivers/dri/i965/Makefile.am @@ -53,7 +53,9 @@ TEST_LIBS = \ TESTS = \ test_eu_compact \ - test_vec4_register_coalesce + test_vec4_register_coalesce \ + test_blorp_blit_eu_gen + check_PROGRAMS = $(TESTS) test_vec4_register_coalesce_SOURCES = \ @@ -66,3 +68,7 @@ test_eu_compact_SOURCES = \ test_eu_compact.c nodist_EXTRA_test_eu_compact_SOURCES = dummy.cpp test_eu_compact_LDADD = $(TEST_LIBS) + +test_blorp_blit_eu_gen_SOURCES = \ + test_blorp_blit_eu_gen.cpp +test_blorp_blit_eu_gen_LDADD = $(TEST_LIBS) |