Hello, this is my first post in Unity forum.
So I am trying to integrate SMAA s2x mode into Unity after I got the 1x mode working. If anyone is interested, this is the link to the original technique: SMAA: Enhanced Subpixel Morphological Antialiasing
This mode requires the two jittered subsample buffers of the scene (in the case of MSAA 2x), and will then perform SMAA 1x on each of the buffers and average the results. But it seems that Unity simply returns the blended result from MSAA, without giving access to the buffers used when rendering the scene with jittered matrices.
Rendering plugin might be able to solve the problem by rendering the entire scene from native code, with MSAA buffers created from c++ side. But that is simply too much trouble to render the whole scene again and it is not a good idea from a performance perspective.
So, my question is, is there a simpler way to access the subsample buffers used in MSAA in Unity?
I am using 4.3.4f1, btw.
Any help is appreciated, Thank you very much!
Hao