In reference to a previous question on Three.js, I have successfully created a scene with a "minimap" using an orthogonal camera rendering into a viewport. The minimap is displayed properly in the standard renderer.
Now, I wanted to add postprocessing effects to the minimap. I set up a THREE.EffectComposer for this purpose, but encountered issues with the settings for the orthogonal camera. The rendered output no longer aligns with the viewport boundaries as expected.
It seems like the scene is being rendered across the entire screen space, with only the portion within the viewport getting clipped and displayed. Changing the viewport anchor point modifies the image displayed rather than just translating it, and adjusting the width/height of the viewport does not stretch the image within it.
My query is: how can I incorporate an EffectComposer within a viewport while maintaining consistent image boundaries for the minimap display?