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
3b13f085
Commit
3b13f085
authored
Nov 15, 2013
by
Rico Schüller
Committed by
Alexandre Julliard
Nov 15, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3d10/tests: Remove some device creation traces.
parent
42f6ca82
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
12 deletions
+0
-12
device.c
dlls/d3d10/tests/device.c
+0
-6
effect.c
dlls/d3d10/tests/effect.c
+0
-6
No files found.
dlls/d3d10/tests/device.c
View file @
3b13f085
...
...
@@ -26,17 +26,11 @@ static ID3D10Device *create_device(void)
ID3D10Device
*
device
;
if
(
SUCCEEDED
(
D3D10CreateDevice
(
NULL
,
D3D10_DRIVER_TYPE_HARDWARE
,
NULL
,
0
,
D3D10_SDK_VERSION
,
&
device
)))
{
trace
(
"Created a HW device
\n
"
);
return
device
;
}
trace
(
"Failed to create a HW device, trying REF
\n
"
);
if
(
SUCCEEDED
(
D3D10CreateDevice
(
NULL
,
D3D10_DRIVER_TYPE_REFERENCE
,
NULL
,
0
,
D3D10_SDK_VERSION
,
&
device
)))
{
trace
(
"Created a REF device
\n
"
);
return
device
;
}
trace
(
"Failed to create a device, returning NULL
\n
"
);
return
NULL
;
...
...
dlls/d3d10/tests/effect.c
View file @
3b13f085
...
...
@@ -28,17 +28,11 @@ static ID3D10Device *create_device(void)
ID3D10Device
*
device
;
if
(
SUCCEEDED
(
D3D10CreateDevice
(
NULL
,
D3D10_DRIVER_TYPE_HARDWARE
,
NULL
,
0
,
D3D10_SDK_VERSION
,
&
device
)))
{
trace
(
"Created a HW device
\n
"
);
return
device
;
}
trace
(
"Failed to create a HW device, trying REF
\n
"
);
if
(
SUCCEEDED
(
D3D10CreateDevice
(
NULL
,
D3D10_DRIVER_TYPE_REFERENCE
,
NULL
,
0
,
D3D10_SDK_VERSION
,
&
device
)))
{
trace
(
"Created a REF device
\n
"
);
return
device
;
}
trace
(
"Failed to create a device, returning NULL
\n
"
);
return
NULL
;
...
...
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