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
5fb02813
Commit
5fb02813
authored
Sep 27, 2015
by
Józef Kucia
Committed by
Alexandre Julliard
Oct 01, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3d11: Rename d3d10_device_init() to d3d_device_init().
Signed-off-by:
Józef Kucia
<
jkucia@codeweavers.com
>
parent
934e4d18
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
d3d11_main.c
dlls/d3d11/d3d11_main.c
+1
-1
d3d11_private.h
dlls/d3d11/d3d11_private.h
+1
-1
device.c
dlls/d3d11/device.c
+1
-1
No files found.
dlls/d3d11/d3d11_main.c
View file @
5fb02813
...
...
@@ -88,7 +88,7 @@ static HRESULT WINAPI layer_create(enum dxgi_device_layer_id id, void **layer_ba
}
object
=
*
layer_base
;
if
(
FAILED
(
hr
=
d3d
10
_device_init
(
object
,
device_object
)))
if
(
FAILED
(
hr
=
d3d_device_init
(
object
,
device_object
)))
{
WARN
(
"Failed to initialize device, hr %#x.
\n
"
,
hr
);
*
device_layer
=
NULL
;
...
...
dlls/d3d11/d3d11_private.h
View file @
5fb02813
...
...
@@ -392,7 +392,7 @@ static inline struct d3d_device *impl_from_ID3D10Device(ID3D10Device1 *iface)
return
CONTAINING_RECORD
(
iface
,
struct
d3d_device
,
ID3D10Device1_iface
);
}
HRESULT
d3d
10
_device_init
(
struct
d3d_device
*
device
,
void
*
outer_unknown
)
DECLSPEC_HIDDEN
;
HRESULT
d3d_device_init
(
struct
d3d_device
*
device
,
void
*
outer_unknown
)
DECLSPEC_HIDDEN
;
/* Layered device */
enum
dxgi_device_layer_id
...
...
dlls/d3d11/device.c
View file @
5fb02813
...
...
@@ -3123,7 +3123,7 @@ static const struct wine_rb_functions d3d_rasterizer_state_rb_ops =
d3d_rasterizer_state_compare
,
};
HRESULT
d3d
10
_device_init
(
struct
d3d_device
*
device
,
void
*
outer_unknown
)
HRESULT
d3d_device_init
(
struct
d3d_device
*
device
,
void
*
outer_unknown
)
{
device
->
IUnknown_inner
.
lpVtbl
=
&
d3d10_device_inner_unknown_vtbl
;
device
->
ID3D11Device_iface
.
lpVtbl
=
&
d3d11_device_vtbl
;
...
...
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