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
47635a60
Commit
47635a60
authored
Feb 15, 2016
by
Henri Verbeet
Committed by
Alexandre Julliard
Feb 16, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ddraw: Handle DDBLT_DDROPS in ddraw_surface7_Blt().
Signed-off-by:
Henri Verbeet
<
hverbeet@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
05b84945
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
5 deletions
+8
-5
surface.c
dlls/ddraw/surface.c
+8
-0
surface.c
dlls/wined3d/surface.c
+0
-4
wined3d.h
include/wine/wined3d.h
+0
-1
No files found.
dlls/ddraw/surface.c
View file @
47635a60
...
...
@@ -1553,6 +1553,14 @@ static HRESULT WINAPI DECLSPEC_HOTPATCH ddraw_surface7_Blt(IDirectDrawSurface7 *
return
DDERR_INVALIDPARAMS
;
}
if
(
Flags
&
DDBLT_DDROPS
)
{
FIXME
(
"DDBLT_DDROPS not implemented.
\n
"
);
if
(
DDBltFx
)
FIXME
(
" rop %#x, pattern %p.
\n
"
,
DDBltFx
->
dwDDROP
,
DDBltFx
->
u5
.
lpDDSPattern
);
return
DDERR_NORASTEROPHW
;
}
wined3d_mutex_lock
();
if
(
Flags
&
(
DDBLT_COLORFILL
|
DDBLT_DEPTHFILL
))
...
...
dlls/wined3d/surface.c
View file @
47635a60
...
...
@@ -4375,10 +4375,6 @@ static HRESULT surface_cpu_blt(struct wined3d_surface *dst_surface, const RECT *
{
FIXME
(
"DDBLT_DEPTHFILL needs to be implemented!
\n
"
);
}
if
(
flags
&
WINEDDBLT_DDROPS
)
{
FIXME
(
"
\t
Ddraw Raster Ops: %08x Pattern: %p
\n
"
,
fx
->
dwDDROP
,
fx
->
u5
.
lpDDSPattern
);
}
/* Now the 'with source' blits. */
if
(
src_surface
)
{
...
...
include/wine/wined3d.h
View file @
47635a60
...
...
@@ -1279,7 +1279,6 @@ enum wined3d_display_rotation
#define WINEDDBLT_ASYNC 0x00000200
#define WINEDDBLT_COLORFILL 0x00000400
#define WINEDDBLT_DDFX 0x00000800
#define WINEDDBLT_DDROPS 0x00001000
#define WINEDDBLT_KEYDEST 0x00002000
#define WINEDDBLT_KEYDESTOVERRIDE 0x00004000
#define WINEDDBLT_KEYSRC 0x00008000
...
...
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