You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Newer versions of C++/WinRT have changed the way coroutine support is handled. I've already had to put together at least one workaround for Win32CaptureSample.
The other header that needs to be fixed is imaging, since it (sloppily) uses std::future to return a winrt::com_ptr. Replacing this will also solve the issue of burning a thread for each of those calls. Unfortunately, IAsyncOperation only works for WinRT interfaces, and not for interfaces that only inherit from IUnknown.
Newer versions of C++/WinRT have changed the way coroutine support is handled. I've already had to put together at least one workaround for Win32CaptureSample.
The other header that needs to be fixed is imaging, since it (sloppily) uses std::future to return a winrt::com_ptr. Replacing this will also solve the issue of burning a thread for each of those calls. Unfortunately, IAsyncOperation only works for WinRT interfaces, and not for interfaces that only inherit from IUnknown.
Related: robmikh/Win32CaptureSample#67
The text was updated successfully, but these errors were encountered: