we're writing an application for a psychology research program where we want to dispay information to the subject of a test. While this info (images mainly) is displayed, we also want to show info on a second monitor where the researcher is following the experiment (in another room)
i have 3 questions :
- how reliable can the images be presented to the subject in terms of timing ? Is this hardware acceleration fast enough that, when I "draw" to the screen, the image is visible within one refresh rate ?
- how fast does the execution return to the code ? I.e. when I draw to the screen, how long will it take for the drawing to complete ? I assume this is < 1 msec ? This is important since we need to check responses via the parallel or serial port every millisecond
- the most important question : can SFML handle this dual monitor setup ? I know that the manual specifies that there can be only one fullscreen window, but perhaps I can make one window fullscreen (the one for the subject) and the other window on the other monitor as big as the monitor resolution, so that it "looks" fullscreen. Is this possible ? Are there any speed repercussions ?
many thanks !