I have a render to texture operation that renders the same scene with 5 different views, using 5 different camera vantage points.
I have a couple of options
- Create 5 textures and render the scene 5 times, changing the rendertarget each time
- Create one large texture and render the scene 5 times, changing the viewport only each time
What I'm looking for though is some way to set up multiple cameras in d3d11, so that I can set up 5 cameras and attach their outputs to textures, and render once. D3D11 supports multiple render targets, but I have no idea how/if I can assign a different camera to each render target