D3D10 How To BLUR Mip levels of render target

Started by
0 comments, last by MJP 13 years, 6 months ago
Hello all developers:

D3D10
In my test application I attached an off-screen render target view to shader stage. I succeeded generating mips of the render target view.
USING pDevicer->GenerateMips(&offScreenRTV);

In my application I want to blur the render target shader view then sample it using (FX)"SampleLevel". But when I tried sampling with this filter : "MIN_MAG_MIP_LINEAR" , I get stair case (squares)( sorry for my English) I tried to use all filters but seemed to be useless.

When I try loading another shader resource view from a file then sample it with mip levels, I get what I want with but, I cant do the same with render target.

If I can blur (or other thinks such as bloom, noise vs) I think I could get many of the features of post progress.
Advertisement
Is the shader resource view for your render target set up to access all mip levels of the texture?

This topic is closed to new replies.

Advertisement