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
66ec8a5c
Commit
66ec8a5c
authored
Sep 04, 2012
by
Henri Verbeet
Committed by
Alexandre Julliard
Sep 04, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Get rid of wined3d_device_get_wined3d().
parent
5c074732
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
14 deletions
+0
-14
device.c
dlls/wined3d/device.c
+0
-12
wined3d.spec
dlls/wined3d/wined3d.spec
+0
-1
wined3d.h
include/wine/wined3d.h
+0
-1
No files found.
dlls/wined3d/device.c
View file @
66ec8a5c
...
...
@@ -1567,18 +1567,6 @@ void CDECL wined3d_device_set_multithreaded(struct wined3d_device *device)
device
->
create_parms
.
flags
|=
WINED3DCREATE_MULTITHREADED
;
}
HRESULT
CDECL
wined3d_device_get_wined3d
(
const
struct
wined3d_device
*
device
,
struct
wined3d
**
wined3d
)
{
TRACE
(
"device %p, wined3d %p.
\n
"
,
device
,
wined3d
);
*
wined3d
=
device
->
wined3d
;
wined3d_incref
(
*
wined3d
);
TRACE
(
"Returning %p.
\n
"
,
*
wined3d
);
return
WINED3D_OK
;
}
UINT
CDECL
wined3d_device_get_available_texture_mem
(
const
struct
wined3d_device
*
device
)
{
TRACE
(
"device %p.
\n
"
,
device
);
...
...
dlls/wined3d/wined3d.spec
View file @
66ec8a5c
...
...
@@ -94,7 +94,6 @@
@ cdecl wined3d_device_get_vs_consts_b(ptr long ptr long)
@ cdecl wined3d_device_get_vs_consts_f(ptr long ptr long)
@ cdecl wined3d_device_get_vs_consts_i(ptr long ptr long)
@ cdecl wined3d_device_get_wined3d(ptr ptr)
@ cdecl wined3d_device_incref(ptr)
@ cdecl wined3d_device_init_3d(ptr ptr)
@ cdecl wined3d_device_init_gdi(ptr ptr)
...
...
include/wine/wined3d.h
View file @
66ec8a5c
...
...
@@ -2176,7 +2176,6 @@ HRESULT __cdecl wined3d_device_get_vs_consts_f(const struct wined3d_device *devi
UINT
start_register
,
float
*
constants
,
UINT
vector4f_count
);
HRESULT
__cdecl
wined3d_device_get_vs_consts_i
(
const
struct
wined3d_device
*
device
,
UINT
start_register
,
int
*
constants
,
UINT
vector4i_count
);
HRESULT
__cdecl
wined3d_device_get_wined3d
(
const
struct
wined3d_device
*
device
,
struct
wined3d
**
wined3d
);
ULONG
__cdecl
wined3d_device_incref
(
struct
wined3d_device
*
device
);
HRESULT
__cdecl
wined3d_device_init_3d
(
struct
wined3d_device
*
device
,
struct
wined3d_swapchain_desc
*
swapchain_desc
);
HRESULT
__cdecl
wined3d_device_init_gdi
(
struct
wined3d_device
*
device
,
struct
wined3d_swapchain_desc
*
swapchain_desc
);
...
...
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