Problem: AMD does not like something like this. float3 *a; flaot b = a->x; You need to circumvent this by using: float3 *a; float b = (*a).x;
Problem: AMD does not like something like this. float3 *a; flaot b = a->x; You need to circumvent this by using: float3 *a; float b = (*a).x;