mirror of
https://github.com/gnif/LookingGlass.git
synced 2025-01-29 14:33:29 +00:00
[c-host] dxgi: fix failure to provide cursor visibility information
This commit is contained in:
parent
4acf800ace
commit
e2adbaa5c1
2 changed files with 5 additions and 4 deletions
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
B1-155-g7cc305c2f5+1
|
||||
B1-156-g4acf800ace+1
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue