compositor clock api question
Geoff Hale
0
Reputation points
Waiting on the compositor clock is done by a call to DCompositionWaitForCompositorClock()
, which looks like it is probably a wrapper around something like WaitForMultipleObjects()
and some compositor event object(s). Wouldn't it have been better to expose the actual event object though, like what was done with GetFrameLatencyWaitableObject()
? This would have been a lot more flexible to work with.
The reason I ask is because I need to use the MsgWaitForMultipleObjectsEx()
function instead.
Sign in to answer