Author Topic: Post processing on the rendered scene  (Read 1480 times)

Offline tao

  • byte
  • *
  • Posts: 16
    • View Profile
Post processing on the rendered scene
« on: March 21, 2014, 01:02:10 pm »
Hi,

Can I add some image effects, like blur, after the scene getting rendered? I see ITextureEffect interface, is that help?

Offline EgonOlsen

  • Administrator
  • quad
  • *****
  • Posts: 12295
    • View Profile
    • http://www.jpct.net
Re: Post processing on the rendered scene
« Reply #1 on: March 21, 2014, 01:49:10 pm »
Yes, you can and no, that interface won't help. You have to render into a texture and you might have to write a shader in addition that applies the effect.
For a simple blur, it's sufficient to render the scene into a small texture and blit it scretched onto the screen. The bilinear filtering will automatically apply a kind of blur effect.