I've got access to a visualization theater this semester that's got two 4k projectors for 3D video. Each of the projectors can work at
4096x2160, and I've been told that one way to send it things for 3D projection is to have the two views side-by-side in the same video file... (
8192x2160)
My current thought is to limit/crop/bound/mask elements in my draw loop first to the left side (0<x<4095), translate 4096 pixels right, move the camera also by some undetermined amount, and draw it again (4096<x<8191)
Anyone have a better idea of creating two viewports side by side, with slightly different camera(eyeX) and updating both in sync?