Using the same texture buffer as SRV and UAV simultaneously on the same compute shader
#1 Members - Reputation: 100
Posted 26 April 2012 - 10:34 PM
I have a 2D texture buffer that I use on a compute shader.
I nead read access to it using SampleLevel method and a write access to it.
Since SampleLevel is defined for Texture2D buffer and not for RWTexture2D - using it as UAV only is not an option.
Can I use the same texture as Unordered Access View and as Shader Resource Views simultaneously on the same compute shader?
Thanks,
Meir.
#2 Members - Reputation: 141
Posted 26 April 2012 - 11:01 PM
You'll probably have to create your mipmaps yourself, save them to separate UAV's, and if you're drawing with them later to use texture arrays.
Or just load the same texture in twice as a UAV and SRV, whilst reading on one and operating on the other.
#5 Members - Reputation: 122
Posted 27 April 2012 - 12:04 AM
If an overlapping resource view is already bound to an output slot, such as a render target, then the method will fill the destination shader resource slot with NULL.
Guess you will need put the result in the shared memory and do the filtering yourself.
#6 Members - Reputation: 100
Posted 27 April 2012 - 12:32 AM
What if I create 2 textures and I run my compute shader several times:
First time texture#1 is passed as SRV, and texture#2 as UAV.
Second time texture#1 is passed as UAV, and texture#2 as SRV.
Third time texture#1 is passed as SRV, and texture#2 as UAV.
and so on... every call the compute shader I switch the two texture roles.
Will that work?
#7 Members - Reputation: 188
Posted 27 April 2012 - 01:04 AM
If you want to read to and write from a UAV in a Compute Shader, try using the RWTexture2D in your shader code instead of Texture2D. Is there some reason you need SampleLevel?
You can do two dispatches, as you suggest. You will need to bind the SRV, dispatch, bind the SRV slot to a NULL SRV (I guess technically an unbind, and it is required), then bind the UAV, and dispatch again.
#9 Crossbones+ - Reputation: 3539
Posted 27 April 2012 - 03:37 AM
Yes, of course, as said in the quote, you can duplicate the texture and use it both as an SRV and a UAV, the idea is that you can't use the same resource (object). You can use two textures because they are different resources even if they happen to contain the same data.I literally mean to load the texture two separate times, and set one as a UAV, and one as an SRV.
But why would you want to? You can read from an UAV. I can't think of a situation where you would need the same texture in both places (rather, I can imagine when you'd need to have a read-only version of the texture as SRV and a blank UAV to write your results).
If you need to chain compute shaders multiple times you can swap the SRV and UAV at each step, but it needs to be done properly (if you don't unbind stuff in the right order the runtime will screw it up and leave you with one texture bound and the other dangling).
#10 Members - Reputation: 100
Posted 27 April 2012 - 04:41 AM
But why would you want to? You can read from an UAV.
I don't need to read a pixel value at a descrete location but rather to sample at a relative location (in the same manner TEXCOORD is used in VS and PS).
Is it enough to unbind the SRVs and UAVs after each iteration or do I need to dispose them and create new ones each time?
#11 Crossbones+ - Reputation: 3539
Posted 27 April 2012 - 04:54 AM
Yes, you can unbind them and reuse them (I used to just swap them after each iteration if I need to chain multiple iterations in a feedback fashion). Just make sure you unbind them in the right order (or just to be sure, unbind them both first, them bind them back).Is it enough to unbind the SRVs and UAVs after each iteration or do I need to dispose them and create new ones each time?






