Lines Matching refs:imageIndex
1298 int2 imageIndex;
1299 imageIndex.x = imageAreaOrg.x + get_local_id(0);
1300 imageIndex.y = imageAreaOrg.y + get_local_id(1);
1303 if (imageIndex.x >= imageWidth
1304 || imageIndex.y >= imageHeight) {
1360 …(channel & AlphaChannel)!=0)?ClampToQuantum(sum.w):input[imageIndex.y * imageWidth + imageIndex.x]…
1362 output[imageIndex.y * imageWidth + imageIndex.x] = outputPixel;
1373 int2 imageIndex;
1374 imageIndex.x = get_global_id(0);
1375 imageIndex.y = get_global_id(1);
1381 if (imageIndex.x >= imageWidth
1382 || imageIndex.y >= imageHeight)
1395 inputPixelIndex.y = imageIndex.y - midFilterDimen.y + j;
1398 inputPixelIndex.x = imageIndex.x - midFilterDimen.x + i;
1419 inputPixelIndex.y = imageIndex.y - midFilterDimen.y + j;
1422 inputPixelIndex.x = imageIndex.x - midFilterDimen.x + i;
1449 …(channel & AlphaChannel)!=0)?ClampToQuantum(sum.w):input[imageIndex.y * imageWidth + imageIndex.x]…
1451 output[imageIndex.y * imageWidth + imageIndex.x] = outputPixel;