1. The document discusses parallel graphics techniques used in the Frostbite game engine, both currently and potentially in the future. It describes using job-based parallelism to utilize multiple CPU cores and the PS3 SPUs.
2. One technique is parallel command buffer recording to dispatch draw calls to multiple command buffers and scale linearly with core count. Another is software occlusion culling using the SPUs/CPU to rasterize a coarse z-buffer.
3. Potential future techniques discussed include deferred shading using compute shaders, with the compute shader culling lights and accumulating lighting per screen-space tile.