Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
ca69a23d
Commit
ca69a23d
authored
Sep 01, 2011
by
Henri Verbeet
Committed by
Alexandre Julliard
Sep 02, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Get rid of some redundant else statements in IWineD3DSurfaceImpl_BltOverride().
parent
179d6f80
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
3 deletions
+10
-3
surface.c
dlls/wined3d/surface.c
+10
-3
No files found.
dlls/wined3d/surface.c
View file @
ca69a23d
...
...
@@ -5411,14 +5411,21 @@ static HRESULT IWineD3DSurfaceImpl_BltOverride(struct wined3d_surface *dst_surfa
TRACE
(
"Unsupported blit between buffers on the same swapchain
\n
"
);
return
WINED3DERR_INVALIDCALL
;
}
else
if
(
dstSwapchain
&&
dstSwapchain
==
srcSwapchain
)
{
}
if
(
dstSwapchain
&&
dstSwapchain
==
srcSwapchain
)
{
FIXME
(
"Implement hardware blit between two surfaces on the same swapchain
\n
"
);
return
WINED3DERR_INVALIDCALL
;
}
else
if
(
dstSwapchain
&&
srcSwapchain
)
{
}
if
(
dstSwapchain
&&
srcSwapchain
)
{
FIXME
(
"Implement hardware blit between two different swapchains
\n
"
);
return
WINED3DERR_INVALIDCALL
;
}
else
if
(
dstSwapchain
)
if
(
dstSwapchain
)
{
/* Handled with regular texture -> swapchain blit */
if
(
src_surface
==
device
->
fb
.
render_targets
[
0
])
...
...
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