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
ed923693
Commit
ed923693
authored
Sep 19, 2013
by
Henri Verbeet
Committed by
Alexandre Julliard
Sep 19, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ddraw: Verify that the surface is a render target in d3d_device_set_render_target().
parent
b7e68ae3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
device.c
dlls/ddraw/device.c
+7
-0
No files found.
dlls/ddraw/device.c
View file @
ed923693
...
...
@@ -1819,6 +1819,13 @@ static HRESULT d3d_device_set_render_target(struct d3d_device *device,
return
DDERR_INVALIDCAPS
;
}
if
(
!
(
target
->
surface_desc
.
ddsCaps
.
dwCaps
&
DDSCAPS_3DDEVICE
))
{
WARN
(
"Surface %p is not a render target.
\n
"
,
target
);
wined3d_mutex_unlock
();
return
DDERR_INVALIDCAPS
;
}
if
(
device
->
rt_iface
==
rt_iface
)
{
TRACE
(
"No-op SetRenderTarget operation, not doing anything
\n
"
);
...
...
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