How much extra workload would I assign the GPU if I choose to duplicate the screen instead of a single monitor?

0

As per my very little knowledge about computer graphics, I think the effect would be minimal. The reason is, given that the two screens has the same resolution, the pixel calculations are done exactly once and only the 'writing to framebuffer' operation is done twice given that the two screens has the same resolution, which is the last step of the graphics pipeline.

How much of a workload is the last step compared to the rest of the pipeline? Would the effects be minimal, i.e., If I duplicate the screens, would my not-so-powerful GPU have trouble maintaining a reasonable FPS rate when playing games due to duplicating the screens?

Varaquilex

Posted 2015-03-02T22:20:54.507

Reputation: 3 620

This heavily depends on the type of graphics card and how they implemented it. The only thing that helps here is a benchmark. – qwerty_so – 2015-03-03T12:30:33.490

@ThomasKilian do you have any benchmark software recommendation for such scenario? How can I test this, which parameters should I take into consideration? – Varaquilex – 2015-03-03T12:44:58.363

Benchmarks are unfortunately countless. Try a couple. Run them with single and duplicated monitor and compare the performance counters. Finding a benchmark with reasonable counters is stupid work :-( Eventually simply use a stop watch. – qwerty_so – 2015-03-03T12:49:08.947

No answers