Framedelay for compute shader

I need to access the values from the previous frame in a compute shader. I want to avoid readback. The only way I can think of is to write the values out as a texture, then delay that and sample it in the cs.

Is there another way? Don’t see no framedelay(buffer)…

RWBuffer…

right yes. Being a bit dim!

thanks