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
f0c52fe0
Commit
f0c52fe0
authored
Sep 16, 2015
by
Andrey Gusev
Committed by
Alexandre Julliard
Sep 18, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3d8: TRACE fixes.
parent
8fdcc239
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
surface.c
dlls/d3d8/surface.c
+1
-1
vertexdeclaration.c
dlls/d3d8/vertexdeclaration.c
+1
-1
volume.c
dlls/d3d8/volume.c
+1
-1
No files found.
dlls/d3d8/surface.c
View file @
f0c52fe0
...
...
@@ -30,7 +30,7 @@ static inline struct d3d8_surface *impl_from_IDirect3DSurface8(IDirect3DSurface8
static
HRESULT
WINAPI
d3d8_surface_QueryInterface
(
IDirect3DSurface8
*
iface
,
REFIID
riid
,
void
**
out
)
{
TRACE
(
"iface %p, riid %s, o
bjec
t %p.
\n
"
,
iface
,
debugstr_guid
(
riid
),
out
);
TRACE
(
"iface %p, riid %s, o
u
t %p.
\n
"
,
iface
,
debugstr_guid
(
riid
),
out
);
if
(
IsEqualGUID
(
riid
,
&
IID_IDirect3DSurface8
)
||
IsEqualGUID
(
riid
,
&
IID_IDirect3DResource8
)
...
...
dlls/d3d8/vertexdeclaration.c
View file @
f0c52fe0
...
...
@@ -263,7 +263,7 @@ static UINT convert_to_wined3d_declaration(const DWORD *d3d8_elements, DWORD *d3
WORD
stream
=
0
;
int
offset
=
0
;
TRACE
(
"d3d8_elements %p,
wined3d_elements %p
\n
"
,
d3d8_elements
,
wined3d_elements
);
TRACE
(
"d3d8_elements %p,
d3d8_elements_size %p, wined3d_elements %p
\n
"
,
d3d8_elements
,
d3d8_elements_size
,
wined3d_elements
);
/* 128 should be enough for anyone... */
*
wined3d_elements
=
HeapAlloc
(
GetProcessHeap
(),
HEAP_ZERO_MEMORY
,
128
*
sizeof
(
**
wined3d_elements
));
...
...
dlls/d3d8/volume.c
View file @
f0c52fe0
...
...
@@ -30,7 +30,7 @@ static inline struct d3d8_volume *impl_from_IDirect3DVolume8(IDirect3DVolume8 *i
static
HRESULT
WINAPI
d3d8_volume_QueryInterface
(
IDirect3DVolume8
*
iface
,
REFIID
riid
,
void
**
out
)
{
TRACE
(
"iface %p, riid %s, o
bjec
t %p.
\n
"
,
iface
,
debugstr_guid
(
riid
),
out
);
TRACE
(
"iface %p, riid %s, o
u
t %p.
\n
"
,
iface
,
debugstr_guid
(
riid
),
out
);
if
(
IsEqualGUID
(
riid
,
&
IID_IDirect3DVolume8
)
||
IsEqualGUID
(
riid
,
&
IID_IUnknown
))
...
...
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