Commit 02ce14b3 authored by Riccardo Bortolato's avatar Riccardo Bortolato Committed by Alexandre Julliard

wined3d: Remove wined3d_volume_preload.

parent 58fe3aff
...@@ -481,11 +481,6 @@ void * CDECL wined3d_volume_get_parent(const struct wined3d_volume *volume) ...@@ -481,11 +481,6 @@ void * CDECL wined3d_volume_get_parent(const struct wined3d_volume *volume)
return volume->resource.parent; return volume->resource.parent;
} }
void CDECL wined3d_volume_preload(struct wined3d_volume *volume)
{
FIXME("volume %p stub!\n", volume);
}
struct wined3d_resource * CDECL wined3d_volume_get_resource(struct wined3d_volume *volume) struct wined3d_resource * CDECL wined3d_volume_get_resource(struct wined3d_volume *volume)
{ {
TRACE("volume %p.\n", volume); TRACE("volume %p.\n", volume);
......
...@@ -289,5 +289,4 @@ ...@@ -289,5 +289,4 @@
@ cdecl wined3d_volume_get_resource(ptr) @ cdecl wined3d_volume_get_resource(ptr)
@ cdecl wined3d_volume_incref(ptr) @ cdecl wined3d_volume_incref(ptr)
@ cdecl wined3d_volume_map(ptr ptr ptr long) @ cdecl wined3d_volume_map(ptr ptr ptr long)
@ cdecl wined3d_volume_preload(ptr)
@ cdecl wined3d_volume_unmap(ptr) @ cdecl wined3d_volume_unmap(ptr)
...@@ -2573,7 +2573,6 @@ struct wined3d_resource * __cdecl wined3d_volume_get_resource(struct wined3d_vol ...@@ -2573,7 +2573,6 @@ struct wined3d_resource * __cdecl wined3d_volume_get_resource(struct wined3d_vol
ULONG __cdecl wined3d_volume_incref(struct wined3d_volume *volume); ULONG __cdecl wined3d_volume_incref(struct wined3d_volume *volume);
HRESULT __cdecl wined3d_volume_map(struct wined3d_volume *volume, HRESULT __cdecl wined3d_volume_map(struct wined3d_volume *volume,
struct wined3d_map_desc *map_desc, const struct wined3d_box *box, DWORD flags); struct wined3d_map_desc *map_desc, const struct wined3d_box *box, DWORD flags);
void __cdecl wined3d_volume_preload(struct wined3d_volume *volume);
HRESULT __cdecl wined3d_volume_unmap(struct wined3d_volume *volume); HRESULT __cdecl wined3d_volume_unmap(struct wined3d_volume *volume);
/* Return the integer base-2 logarithm of x. Undefined for x == 0. */ /* Return the integer base-2 logarithm of x. Undefined for x == 0. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment