aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/SkNxTest.cpp
diff options
context:
space:
mode:
authorGravatar msarett <msarett@google.com>2016-09-16 11:01:27 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-09-16 11:01:27 -0700
commitc71a9b7f53938b4f33f36f48e867b8b72cc1cc61 (patch)
tree8fbb6b55eb00f5fb5b55e89d97076f199cc0e205 /tests/SkNxTest.cpp
parent046cb56c6c1bb40779c81b115271ed0e8196b48b (diff)
Revert of Support Float32 output from SkColorSpaceXform (patchset #7 id:140001 of https://codereview.chromium.org/2339233003/ )
Reason for revert: Hitting an assert Original issue's description: > Support Float32 output from SkColorSpaceXform > > * Adds Float32 support to SkColorSpaceXform > * Changes API to allows clients to ask for F32, updates clients to > new API > * Adds Sk4f_load4 and Sk4f_store4 to SkNx > * Make use of new xform in SkGr.cpp > > BUG=skia: > GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2339233003 > CQ_INCLUDE_TRYBOTS=master.client.skia:Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-SKNX_NO_SIMD-Trybot > > Committed: https://skia.googlesource.com/skia/+/43d6651111374b5d1e4ddd9030dcf079b448ec47 TBR=brianosman@google.com,mtklein@google.com,scroggo@google.com,mtklein@chromium.org,bsalomon@google.com # Skipping CQ checks because original CL landed less than 1 days ago. NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=skia: Review-Url: https://codereview.chromium.org/2347473007
Diffstat (limited to 'tests/SkNxTest.cpp')
-rw-r--r--tests/SkNxTest.cpp32
1 files changed, 0 insertions, 32 deletions
diff --git a/tests/SkNxTest.cpp b/tests/SkNxTest.cpp
index a3aef6bb8e..51d937dd4d 100644
--- a/tests/SkNxTest.cpp
+++ b/tests/SkNxTest.cpp
@@ -307,35 +307,3 @@ DEF_TEST(SkNx_int_u16, r) {
REPORTER_ASSERT(r, expected == actual);
}
}
-
-DEF_TEST(SkNx_4fLoad4Store4, r) {
- float src[] = {
- 0.0f, 1.0f, 2.0f, 3.0f,
- 4.0f, 5.0f, 6.0f, 7.0f,
- 8.0f, 9.0f, 10.0f, 11.0f,
- 12.0f, 13.0f, 14.0f, 15.0f
- };
-
- Sk4f a, b, c, d;
- Sk4f_load4(src, &a, &b, &c, &d);
- REPORTER_ASSERT(r, 0.0f == a[0]);
- REPORTER_ASSERT(r, 4.0f == a[1]);
- REPORTER_ASSERT(r, 8.0f == a[2]);
- REPORTER_ASSERT(r, 12.0f == a[3]);
- REPORTER_ASSERT(r, 1.0f == b[0]);
- REPORTER_ASSERT(r, 5.0f == b[1]);
- REPORTER_ASSERT(r, 9.0f == b[2]);
- REPORTER_ASSERT(r, 13.0f == b[3]);
- REPORTER_ASSERT(r, 2.0f == c[0]);
- REPORTER_ASSERT(r, 6.0f == c[1]);
- REPORTER_ASSERT(r, 10.0f == c[2]);
- REPORTER_ASSERT(r, 14.0f == c[3]);
- REPORTER_ASSERT(r, 3.0f == d[0]);
- REPORTER_ASSERT(r, 7.0f == d[1]);
- REPORTER_ASSERT(r, 11.0f == d[2]);
- REPORTER_ASSERT(r, 15.0f == d[3]);
-
- float dst[16];
- Sk4f_store4(dst, a, b, c, d);
- REPORTER_ASSERT(r, 0 == memcmp(dst, src, 16 * sizeof(float)));
-}