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
008c23d0
Commit
008c23d0
authored
Aug 07, 2006
by
H. Verbeet
Committed by
Alexandre Julliard
Aug 07, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Improve a few query traces.
The query type is useful to have in query TRACEs. IWineD3DQueryImpl_GetDataSize isn't really a stub.
parent
44c1747f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
query.c
dlls/wined3d/query.c
+2
-2
No files found.
dlls/wined3d/query.c
View file @
008c23d0
...
...
@@ -251,7 +251,7 @@ static HRESULT WINAPI IWineD3DQueryImpl_GetData(IWineD3DQuery* iface, void* pDa
/*dwGetDataFlags = 0 || D3DGETDATA_FLUSH
D3DGETDATA_FLUSH may return WINED3DERR_DEVICELOST if the device is lost
*/
FIXME
(
"(%p) :
stub
\n
"
,
This
);
FIXME
(
"(%p) :
type %#x, Partial stub
\n
"
,
This
,
This
->
type
);
return
S_OK
;
/* S_OK if the query data is available*/
}
...
...
@@ -259,7 +259,7 @@ static HRESULT WINAPI IWineD3DQueryImpl_GetData(IWineD3DQuery* iface, void* pDa
static
DWORD
WINAPI
IWineD3DQueryImpl_GetDataSize
(
IWineD3DQuery
*
iface
){
IWineD3DQueryImpl
*
This
=
(
IWineD3DQueryImpl
*
)
iface
;
int
dataSize
=
0
;
FIXME
(
"(%p) : stub
\n
"
,
This
);
TRACE
(
"(%p) : type %#x
\n
"
,
This
,
This
->
type
);
switch
(
This
->
type
){
case
WINED3DQUERYTYPE_VCACHE
:
dataSize
=
sizeof
(
WINED3DDEVINFO_VCACHE
);
...
...
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