Module: Mesa Branch: 10.3 Commit: 2310a4b4cf0fd7a4cd04dd9aba5c89f52070e5d2 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=2310a4b4cf0fd7a4cd04dd9aba5c89f52070e5d2
Author: Matt Turner <[email protected]> Date: Thu Aug 28 20:16:42 2014 -0700 i965/vec4: Update register coalescing test. In commit 04895f5c I added support for reswizzling writemasks. This test was checking that we didn't support this. Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=82881 (cherry picked from commit 8b5ac1df17608e0d0d5ce412988ee8de97f61405) --- src/mesa/drivers/dri/i965/test_vec4_register_coalesce.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/mesa/drivers/dri/i965/test_vec4_register_coalesce.cpp b/src/mesa/drivers/dri/i965/test_vec4_register_coalesce.cpp index 149174c..16e6270 100644 --- a/src/mesa/drivers/dri/i965/test_vec4_register_coalesce.cpp +++ b/src/mesa/drivers/dri/i965/test_vec4_register_coalesce.cpp @@ -241,8 +241,5 @@ TEST_F(register_coalesce_test, test_channel_mul_grf) register_coalesce(v); - /* This path isn't supported yet in the reswizzling code, so we're checking - * that we haven't done anything bad to scalar non-DP[234]s. - */ - EXPECT_NE(mul->dst.reg, to.reg); + EXPECT_EQ(mul->dst.reg, to.reg); } _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
