OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:pixelDiff
(Results
1 - 3
of
3
) sorted by null
/external/skia/tests/
PathOpsBuilderTest.cpp
37
int
pixelDiff
= comparePaths(reporter, __FUNCTION__, rectPath, result);
38
REPORTER_ASSERT(reporter,
pixelDiff
== 0);
78
pixelDiff
= comparePaths(reporter, __FUNCTION__, opCompare, result);
79
REPORTER_ASSERT(reporter,
pixelDiff
== 0);
100
int
pixelDiff
= comparePaths(reporter, __FUNCTION__, path, path2);
101
REPORTER_ASSERT(reporter,
pixelDiff
== 0);
114
int
pixelDiff
= comparePaths(reporter, __FUNCTION__, path, result);
115
REPORTER_ASSERT(reporter,
pixelDiff
== 0);
135
int
pixelDiff
= comparePaths(reporter, __FUNCTION__, path, result);
136
REPORTER_ASSERT(reporter,
pixelDiff
== 0)
[
all
...]
/external/skqp/tests/
PathOpsBuilderTest.cpp
37
int
pixelDiff
= comparePaths(reporter, __FUNCTION__, rectPath, result);
38
REPORTER_ASSERT(reporter,
pixelDiff
== 0);
78
pixelDiff
= comparePaths(reporter, __FUNCTION__, opCompare, result);
79
REPORTER_ASSERT(reporter,
pixelDiff
== 0);
100
int
pixelDiff
= comparePaths(reporter, __FUNCTION__, path, path2);
101
REPORTER_ASSERT(reporter,
pixelDiff
== 0);
114
int
pixelDiff
= comparePaths(reporter, __FUNCTION__, path, result);
115
REPORTER_ASSERT(reporter,
pixelDiff
== 0);
135
int
pixelDiff
= comparePaths(reporter, __FUNCTION__, path, result);
136
REPORTER_ASSERT(reporter,
pixelDiff
== 0)
[
all
...]
/cts/tests/tests/graphics/src/android/graphics/cts/
VulkanPreTransformTest.java
159
private static int
pixelDiff
(int pixel, int expectedR, int expectedG, int expectedB) {
178
diff +=
pixelDiff
(bitmap.getPixel(0, 0), 255, 0, 0);
179
diff +=
pixelDiff
(bitmap.getPixel(width - 1, 0), 0, 255, 0);
180
diff +=
pixelDiff
(bitmap.getPixel(0, height - 1), 0, 0, 255);
181
diff +=
pixelDiff
(bitmap.getPixel(width - 1, height - 1), 255, 255, 0);
183
diff +=
pixelDiff
(bitmap.getPixel(0, 0), 0, 255, 0);
184
diff +=
pixelDiff
(bitmap.getPixel(width - 1, 0), 255, 255, 0);
185
diff +=
pixelDiff
(bitmap.getPixel(0, height - 1), 255, 0, 0);
186
diff +=
pixelDiff
(bitmap.getPixel(width - 1, height - 1), 0, 0, 255);
188
diff +=
pixelDiff
(bitmap.getPixel(0, 0), 255, 255, 0)
[
all
...]
Completed in 396 milliseconds