问题 If already have a DirectX texture in hand, what is the fast(low CPU utilization) way to get a RGB24 buffer in main RAM from it (skip the A)? Strictly the format is DXGI_FORMAT_B8G8R8A8_UNORM , does this mean ARGB? I'm using https://github.com/bmharper/WindowsDesktopDuplicationSample to capture Windows desktop and the result is to be converted into RGB24 lossless format in main RAM. The existing code copy GPU texture to CPU texture then use memcpy to copy each line of the RGBA32 data to main