By using this site, you agree to our Privacy Policy and our Terms of Use. Close
kanageddaamen said:
...


Not exactly.  For most games, almost all of the games' non-drawing functionality will only need to be done once, and will be handled by the CPU (Physics, AI, Animation, script processing, etc) Depending on how the 2nd screen is used, some optimization code may need to be done multiple times (LOD calculations, etc)

How much time it takes to render what is on the screen depends on a number of factors, such as Number of polygons, number of shader runs per vertex, number of fragment shaders per fragment, and screen resolution.  For a game with highly complex 3d graphics rendering on the screen (ala using the screen a a viewport into the game world) this could take a fair amount of time on the GPU to render.  However, a lot of the overhead (loading shader code, loading textures, etc) could be shared by both screens and so even in the most complex of cases, rendering to 2 screens will not be equal to rendering to one screen twice.

I already said if it was blank that wasn't more work. Since the drawing is rendered with the same complexity it's 2x the work and this is already accounted for.