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
1cb7878b
Commit
1cb7878b
authored
Aug 18, 2015
by
Józef Kucia
Committed by
Alexandre Julliard
Aug 18, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3d10core: Do not use '\n' in the middle of TRACEs.
parent
02254e04
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
device.c
dlls/d3d10core/device.c
+10
-10
No files found.
dlls/d3d10core/device.c
View file @
1cb7878b
...
...
@@ -316,8 +316,8 @@ static void STDMETHODCALLTYPE d3d10_device_DrawIndexedInstanced(ID3D10Device1 *i
{
struct
d3d10_device
*
device
=
impl_from_ID3D10Device
(
iface
);
TRACE
(
"iface %p, instance_index_count %u, instance_count %u, start_index_location %u,
\n
"
"
\t
base_vertex_location %d, start_instance_location %u.
\n
"
,
TRACE
(
"iface %p, instance_index_count %u, instance_count %u, start_index_location %u,
"
"base_vertex_location %d, start_instance_location %u.
\n
"
,
iface
,
instance_index_count
,
instance_count
,
start_index_location
,
base_vertex_location
,
start_instance_location
);
...
...
@@ -795,8 +795,8 @@ static void STDMETHODCALLTYPE d3d10_device_ResolveSubresource(ID3D10Device1 *ifa
ID3D10Resource
*
dst_resource
,
UINT
dst_subresource_idx
,
ID3D10Resource
*
src_resource
,
UINT
src_subresource_idx
,
DXGI_FORMAT
format
)
{
FIXME
(
"iface %p, dst_resource %p, dst_subresource_idx %u,
\n
"
"
\t
src_resource %p, src_subresource_idx %u, format %s stub!
\n
"
,
FIXME
(
"iface %p, dst_resource %p, dst_subresource_idx %u,
"
"src_resource %p, src_subresource_idx %u, format %s stub!
\n
"
,
iface
,
dst_resource
,
dst_subresource_idx
,
src_resource
,
src_subresource_idx
,
debug_dxgi_format
(
format
));
}
...
...
@@ -1731,8 +1731,8 @@ static HRESULT STDMETHODCALLTYPE d3d10_device_CreateInputLayout(ID3D10Device1 *i
struct
d3d10_input_layout
*
object
;
HRESULT
hr
;
TRACE
(
"iface %p, element_descs %p, element_count %u, shader_byte_code %p,"
"
\t
shader_byte_code_length %lu, input_layout %p
\n
"
,
TRACE
(
"iface %p, element_descs %p, element_count %u, shader_byte_code %p,
"
"shader_byte_code_length %lu, input_layout %p
\n
"
,
iface
,
element_descs
,
element_count
,
shader_byte_code
,
shader_byte_code_length
,
input_layout
);
...
...
@@ -1815,8 +1815,8 @@ static HRESULT STDMETHODCALLTYPE d3d10_device_CreateGeometryShaderWithStreamOutp
const
void
*
byte_code
,
SIZE_T
byte_code_length
,
const
D3D10_SO_DECLARATION_ENTRY
*
output_stream_decls
,
UINT
output_stream_decl_count
,
UINT
output_stream_stride
,
ID3D10GeometryShader
**
shader
)
{
FIXME
(
"iface %p, byte_code %p, byte_code_length %lu, output_stream_decls %p,
\n
"
"
\t
output_stream_decl_count %u, output_stream_stride %u, shader %p stub!
\n
"
,
FIXME
(
"iface %p, byte_code %p, byte_code_length %lu, output_stream_decls %p,
"
"output_stream_decl_count %u, output_stream_stride %u, shader %p stub!
\n
"
,
iface
,
byte_code
,
byte_code_length
,
output_stream_decls
,
output_stream_decl_count
,
output_stream_stride
,
shader
);
...
...
@@ -2134,8 +2134,8 @@ static HRESULT STDMETHODCALLTYPE d3d10_device_CheckCounter(ID3D10Device1 *iface,
const
D3D10_COUNTER_DESC
*
desc
,
D3D10_COUNTER_TYPE
*
type
,
UINT
*
active_counters
,
char
*
name
,
UINT
*
name_length
,
char
*
units
,
UINT
*
units_length
,
char
*
description
,
UINT
*
description_length
)
{
FIXME
(
"iface %p, desc %p, type %p, active_counters %p, name %p, name_length %p,
\n
"
"
\t
units %p, units_length %p, description %p, description_length %p stub!
\n
"
,
FIXME
(
"iface %p, desc %p, type %p, active_counters %p, name %p, name_length %p,
"
"units %p, units_length %p, description %p, description_length %p stub!
\n
"
,
iface
,
desc
,
type
,
active_counters
,
name
,
name_length
,
units
,
units_length
,
description
,
description_length
);
...
...
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