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
f319d4ce
Commit
f319d4ce
authored
Oct 17, 2023
by
Jacek Caban
Committed by
Alexandre Julliard
Oct 20, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d2d1: Pass interpolation mode as D2D1_INTERPOLATION_MODE to d2d_device_context_draw_bitmap.
parent
a07fbb93
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
device.c
dlls/d2d1/device.c
+1
-2
No files found.
dlls/d2d1/device.c
View file @
f319d4ce
...
...
@@ -2544,8 +2544,7 @@ static void STDMETHODCALLTYPE d2d_device_context_DrawImage(ID2D1DeviceContext1 *
if
(
SUCCEEDED
(
ID2D1Image_QueryInterface
(
image
,
&
IID_ID2D1Bitmap
,
(
void
**
)
&
bitmap
)))
{
d2d_device_context_draw_bitmap
(
context
,
bitmap
,
NULL
,
1
.
0
f
,
d2d1_1_interp_mode_from_d2d1
(
interpolation_mode
),
image_rect
,
target_offset
,
NULL
);
d2d_device_context_draw_bitmap
(
context
,
bitmap
,
NULL
,
1
.
0
f
,
interpolation_mode
,
image_rect
,
target_offset
,
NULL
);
ID2D1Bitmap_Release
(
bitmap
);
return
;
...
...
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