[c-host] cleanup dxgi cursor code a bit

This commit is contained in:
Geoffrey McRae 2020-01-09 21:20:01 +11:00
parent 6f551c770c
commit e7239c53fd

View File

@ -710,9 +710,9 @@ static CaptureResult dxgi_capture()
frameInfo.PointerPosition.Visible != this->lastPointerVisible
)
{
this->lastPointerX = pointer.x = frameInfo.PointerPosition.Position.x;
this->lastPointerY = pointer.y = frameInfo.PointerPosition.Position.y;
this->lastPointerVisible = pointer.visible = frameInfo.PointerPosition.Visible;
this->lastPointerX = frameInfo.PointerPosition.Position.x;
this->lastPointerY = frameInfo.PointerPosition.Position.y;
this->lastPointerVisible = frameInfo.PointerPosition.Visible;
postPointer = true;
}
}
@ -754,7 +754,12 @@ static CaptureResult dxgi_capture()
// post back the pointer information
if (postPointer)
{
pointer.x = this->lastPointerX;
pointer.y = this->lastPointerY;
pointer.visible = this->lastPointerVisible;
this->postPointerBufferFn(pointer);
}
return CAPTURE_RESULT_OK;
}