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
41346a1d
Commit
41346a1d
authored
Jul 27, 2010
by
Henri Verbeet
Committed by
Alexandre Julliard
Jul 28, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Setting render target 0 to NULL in an application error.
parent
ea2bb2a9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
6 deletions
+5
-6
device.c
dlls/wined3d/device.c
+5
-6
No files found.
dlls/wined3d/device.c
View file @
41346a1d
...
...
@@ -5758,14 +5758,13 @@ static HRESULT WINAPI IWineD3DDeviceImpl_SetRenderTarget(IWineD3DDevice *iface,
return
WINED3DERR_INVALIDCALL
;
}
/* MSDN says that null disables the render target
but a device must always be associated with a render target
nope MSDN says that we return invalid call to a null rendertarget with an index of 0
*/
if
(
RenderTargetIndex
==
0
&&
pRenderTarget
==
NULL
)
{
FIXME
(
"Trying to set render target 0 to NULL
\n
"
);
/* Render target 0 can't be set to NULL. */
if
(
!
pRenderTarget
&&
!
RenderTargetIndex
)
{
WARN
(
"Trying to set render target 0 to NULL.
\n
"
);
return
WINED3DERR_INVALIDCALL
;
}
if
(
pRenderTarget
&&
!
(((
IWineD3DSurfaceImpl
*
)
pRenderTarget
)
->
resource
.
usage
&
WINED3DUSAGE_RENDERTARGET
))
{
FIXME
(
"(%p)Trying to set the render target to a surface(%p) that wasn't created with a usage of WINED3DUSAGE_RENDERTARGET
\n
"
,
This
,
pRenderTarget
);
return
WINED3DERR_INVALIDCALL
;
...
...
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