rate up
1
rate down
Access data from shader, when rendered to a texture
How can i access my data in shader from shader resource view.? Is there any need for projection vector for accessing data in shader, which was rendered to a texture?
rate up
0
rate down
Use a point sampler to access the data from a texture. This way it will access the closes texel to that point, where other samplers like linear will return a value related to the nearest couple texels to that point
Sign in to answer!