Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
3d229b81
Commit
3d229b81
authored
May 16, 2011
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Switch to the software cursor when the position diverges from the hardware one.
parent
599d09b0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
1 deletion
+14
-1
device.c
dlls/wined3d/device.c
+14
-1
No files found.
dlls/wined3d/device.c
View file @
3d229b81
...
...
@@ -5323,11 +5323,11 @@ HRESULT CDECL wined3d_device_set_cursor_properties(struct wined3d_device *device
wined3d_surface_unmap
(
cursor_image
);
/* Create our cursor and clean up. */
cursor
=
CreateIconIndirect
(
&
cursorInfo
);
SetCursor
(
cursor
);
if
(
cursorInfo
.
hbmMask
)
DeleteObject
(
cursorInfo
.
hbmMask
);
if
(
cursorInfo
.
hbmColor
)
DeleteObject
(
cursorInfo
.
hbmColor
);
if
(
device
->
hardwareCursor
)
DestroyCursor
(
device
->
hardwareCursor
);
device
->
hardwareCursor
=
cursor
;
if
(
device
->
bCursorVisible
)
SetCursor
(
cursor
);
HeapFree
(
GetProcessHeap
(),
0
,
maskBits
);
}
}
...
...
@@ -5345,6 +5345,19 @@ void CDECL wined3d_device_set_cursor_position(struct wined3d_device *device,
device
->
xScreenSpace
=
x_screen_space
;
device
->
yScreenSpace
=
y_screen_space
;
/* switch to the software cursor if position diverges from the hardware one */
if
(
device
->
hardwareCursor
)
{
POINT
pt
;
GetCursorPos
(
&
pt
);
if
(
x_screen_space
!=
pt
.
x
||
y_screen_space
!=
pt
.
y
)
{
if
(
device
->
bCursorVisible
)
SetCursor
(
NULL
);
DestroyCursor
(
device
->
hardwareCursor
);
device
->
hardwareCursor
=
0
;
}
}
}
BOOL
CDECL
wined3d_device_show_cursor
(
struct
wined3d_device
*
device
,
BOOL
show
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment