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
4522b07c
Commit
4522b07c
authored
Apr 09, 2012
by
Henri Verbeet
Committed by
Alexandre Julliard
Apr 10, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3dx9: Don't return a pointer to the implementation in ID3DXMatrixStackImpl_QueryInterface().
parent
daedd007
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
6 deletions
+10
-6
math.c
dlls/d3dx9_36/math.c
+10
-6
No files found.
dlls/d3dx9_36/math.c
View file @
4522b07c
...
...
@@ -801,17 +801,21 @@ static inline ID3DXMatrixStackImpl *impl_from_ID3DXMatrixStack(ID3DXMatrixStack
return
CONTAINING_RECORD
(
iface
,
ID3DXMatrixStackImpl
,
ID3DXMatrixStack_iface
);
}
static
HRESULT
WINAPI
ID3DXMatrixStackImpl_QueryInterface
(
ID3DXMatrixStack
*
iface
,
REFIID
riid
,
void
**
ppobj
)
static
HRESULT
WINAPI
ID3DXMatrixStackImpl_QueryInterface
(
ID3DXMatrixStack
*
iface
,
REFIID
riid
,
void
**
out
)
{
ID3DXMatrixStackImpl
*
This
=
impl_from_ID3DXMatrixStack
(
iface
);
if
(
IsEqualGUID
(
riid
,
&
IID_IUnknown
)
||
IsEqualGUID
(
riid
,
&
IID_ID3DXMatrixStack
))
TRACE
(
"iface %p, riid %s, out %p.
\n
"
,
iface
,
debugstr_guid
(
riid
),
out
);
if
(
IsEqualGUID
(
riid
,
&
IID_ID3DXMatrixStack
)
||
IsEqualGUID
(
riid
,
&
IID_IUnknown
))
{
ID3DXMatrixStack_AddRef
(
iface
);
*
ppobj
=
This
;
*
out
=
iface
;
return
S_OK
;
}
*
ppobj
=
NULL
;
WARN
(
"(%p)->(%s,%p), not found
\n
"
,
This
,
debugstr_guid
(
riid
),
ppobj
);
WARN
(
"%s not implemented, returning E_NOINTERFACE.
\n
"
,
debugstr_guid
(
riid
));
*
out
=
NULL
;
return
E_NOINTERFACE
;
}
...
...
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