Index: tests/PMFloatTest.cpp |
diff --git a/tests/PMFloatTest.cpp b/tests/PMFloatTest.cpp |
index b1a4d045b493a793bf6d8aeeef7858f794a8fc35..0f0d853c2b840d8abacd74e2a6da6edc1b4adf4b 100644 |
--- a/tests/PMFloatTest.cpp |
+++ b/tests/PMFloatTest.cpp |
@@ -1,3 +1,10 @@ |
+/* |
+ * Copyright 2015 Google Inc. |
+ * |
+ * Use of this source code is governed by a BSD-style license that can be |
+ * found in the LICENSE file. |
+ */ |
+ |
#include "SkPMFloat.h" |
#include "Test.h" |
@@ -33,15 +40,15 @@ DEF_TEST(SkPMFloat, r) { |
// Test 4-at-a-time conversions. |
SkPMColor colors[4] = { 0xFF000000, 0xFFFF0000, 0xFF00FF00, 0xFF0000FF }; |
SkPMFloat floats[4]; |
- SkPMFloat::From4PMColors(floats, colors); |
+ SkPMFloat::From4PMColors(colors, floats+0, floats+1, floats+2, floats+3); |
SkPMColor back[4]; |
- SkPMFloat::To4PMColors(back, floats); |
+ SkPMFloat::To4PMColors(floats[0], floats[1], floats[2], floats[3], back); |
for (int i = 0; i < 4; i++) { |
REPORTER_ASSERT(r, back[i] == colors[i]); |
} |
- SkPMFloat::ClampTo4PMColors(back, floats); |
+ SkPMFloat::ClampTo4PMColors(floats[0], floats[1], floats[2], floats[3], back); |
for (int i = 0; i < 4; i++) { |
REPORTER_ASSERT(r, back[i] == colors[i]); |
} |