In some VR games, you want to let the player look through binoculars or a gunsight or a telescope. It is apparently impossible to correctly change the field of view of the main camera in VR. Therefore, we’ve been implementing these features with render textures, where we render the “zoomed in” field of view to the render texture, then show this render texture on the “lens” of the optical sight.
While this “works”, it is very expensive to render the entire scene yet again. We would rather just change the main camera’s field of view to not add any new render passes.
The online multiplayer Onward game uses the render to texture strategy and seems to run fine. I think if you keep your texture resolution somewhat low, it should be ok.
I got 2048 and have no issues (PCVR) what-so-ever. It is only active when close to the head.
Also, I found this video and shows how to do a shader (I think this is what hipocoder was referring to), but the problem with this is it gets pixelated when you zoom in a lot.
I believe Resident Evil 4 VR does this for it’s rifle zoom by doing something extremely similar to the Zoom shader effect in the video above, except they black out the screen and/or put it in world space at the end of a black tube to reduce overdraw.