I'm getting the following error when compiling my kernel:
Error: (0): Texture/surface reference must be simple name
I reduced it down as much as possible to the following example kernel, which demonstrates the problem:
__kernel void accum(__global __read_only image2d_t accumulateds) {
int2 pos = (int2)(get_global_id(0),get_global_id(1));
float4 accum = read_imagef(accumulateds,CLK_RGBA|CLK_ADDRESS_CLAMP|CLK_FILTER_NEAREST,pos);
}
I found some unhelpful forum. posts., but otherwise no mention of this error whatsoever. Additionally, I have seen example code that looks similar to the above example. My GPU (GeForce 580M GTX) should support reading images (it supports writing, for one thing).