Forum Discussion
No RepliesBe the first to reply
Hi,
Is there a better way to perform a shift operation on a vector datatype to the general approach below: float4 value; float new; float4 result; result.w = value.z; result.z =value.y; result.y = value.x; result.x = new; Many thanks