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
efc080e3
Commit
efc080e3
authored
Apr 21, 2011
by
Henri Verbeet
Committed by
Alexandre Julliard
Apr 22, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Get rid of wined3d_buffer_get_type().
parent
82e39ced
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
7 deletions
+0
-7
buffer.c
dlls/wined3d/buffer.c
+0
-5
wined3d.spec
dlls/wined3d/wined3d.spec
+0
-1
wined3d.idl
include/wine/wined3d.idl
+0
-1
No files found.
dlls/wined3d/buffer.c
View file @
efc080e3
...
...
@@ -961,11 +961,6 @@ void CDECL wined3d_buffer_preload(struct wined3d_buffer *buffer)
context_release
(
context
);
}
WINED3DRESOURCETYPE
CDECL
wined3d_buffer_get_type
(
const
struct
wined3d_buffer
*
buffer
)
{
return
resource_get_type
(
&
buffer
->
resource
);
}
static
DWORD
buffer_sanitize_flags
(
struct
wined3d_buffer
*
buffer
,
DWORD
flags
)
{
/* Not all flags make sense together, but Windows never returns an error. Catch the
...
...
dlls/wined3d/wined3d.spec
View file @
efc080e3
...
...
@@ -25,7 +25,6 @@
@ cdecl wined3d_buffer_get_priority(ptr)
@ cdecl wined3d_buffer_get_private_data(ptr ptr ptr ptr)
@ cdecl wined3d_buffer_get_resource(ptr)
@ cdecl wined3d_buffer_get_type(ptr)
@ cdecl wined3d_buffer_incref(ptr)
@ cdecl wined3d_buffer_map(ptr long long ptr long)
@ cdecl wined3d_buffer_preload(ptr)
...
...
include/wine/wined3d.idl
View file @
efc080e3
...
...
@@ -2933,7 +2933,6 @@ DWORD __cdecl wined3d_buffer_get_priority(const struct wined3d_buffer *buffer);
HRESULT
__cdecl
wined3d_buffer_get_private_data
(
const
struct
wined3d_buffer
*
buffer
,
REFGUID
guid
,
void
*
data
,
DWORD
*
data_size
)
;
struct
wined3d_resource
*
__cdecl
wined3d_buffer_get_resource
(
struct
wined3d_buffer
*
buffer
)
;
WINED3DRESOURCETYPE
__cdecl
wined3d_buffer_get_type
(
const
struct
wined3d_buffer
*
buffer
)
;
ULONG
__cdecl
wined3d_buffer_incref
(
struct
wined3d_buffer
*
buffer
)
;
HRESULT
__cdecl
wined3d_buffer_map
(
struct
wined3d_buffer
*
buffer
,
UINT
offset
,
UINT
size
,
BYTE
**
data
,
DWORD
flags
)
;
void
__cdecl
wined3d_buffer_preload
(
struct
wined3d_buffer
*
buffer
)
;
...
...
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