add point of interest API
R=bsalomon@google.com
Review URL: https://codereview.chromium.org/18176005
git-svn-id: http://skia.googlecode.com/svn/trunk@9806 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/experimental/skpdiff/diff_pixels.cl b/experimental/skpdiff/diff_pixels.cl
index c1ecb52..1eed2a4 100644
--- a/experimental/skpdiff/diff_pixels.cl
+++ b/experimental/skpdiff/diff_pixels.cl
@@ -11,7 +11,8 @@
CLK_ADDRESS_CLAMP_TO_EDGE |
CLK_FILTER_NEAREST;
-__kernel void diff(read_only image2d_t baseline, read_only image2d_t test, __global int* result) {
+__kernel void diff(read_only image2d_t baseline, read_only image2d_t test,
+ __global int* result, __global int2* poi) {
int2 coord = (int2)(get_global_id(0), get_global_id(1));
uint4 baselinePixel = read_imageui(baseline, gInSampler, coord);
uint4 testPixel = read_imageui(test, gInSampler, coord);
@@ -21,6 +22,7 @@
baselinePixel.z != testPixel.z ||
baselinePixel.w != testPixel.w) {
- atom_inc(result);
+ int poiIndex = atomic_inc(result);
+ poi[poiIndex] = coord;
}
}
\ No newline at end of file