[c-host] dxgi: fix failure to provide cursor visibility information

This commit is contained in:
Geoffrey McRae 2020-02-12 18:36:11 +11:00
parent 4acf800ace
commit e2adbaa5c1
2 changed files with 5 additions and 4 deletions

View File

@ -1 +1 @@
B1-155-g7cc305c2f5+1
B1-156-g4acf800ace+1

View File

@ -724,9 +724,7 @@ static CaptureResult dxgi_capture()
frameInfo.PointerPosition.Position.y;
}
pointer.visible =
this->lastPointerVisible =
frameInfo.PointerPosition.Visible;
this->lastPointerVisible = frameInfo.PointerPosition.Visible;
postPointer = true;
}
}
@ -768,7 +766,10 @@ static CaptureResult dxgi_capture()
// post back the pointer information
if (postPointer)
{
pointer.visible = this->lastPointerVisible;
this->postPointerBufferFn(pointer);
}
return CAPTURE_RESULT_OK;
}