Commit e580d748 authored by Henri Verbeet's avatar Henri Verbeet Committed by Alexandre Julliard

d3d8: Use wined3d_texture_get_sub_resource_parent() in d3d8_texture_3d_UnlockBox().

parent 4ddf51da
...@@ -1029,20 +1029,16 @@ static HRESULT WINAPI d3d8_texture_3d_LockBox(IDirect3DVolumeTexture8 *iface, ...@@ -1029,20 +1029,16 @@ static HRESULT WINAPI d3d8_texture_3d_LockBox(IDirect3DVolumeTexture8 *iface,
static HRESULT WINAPI d3d8_texture_3d_UnlockBox(IDirect3DVolumeTexture8 *iface, UINT level) static HRESULT WINAPI d3d8_texture_3d_UnlockBox(IDirect3DVolumeTexture8 *iface, UINT level)
{ {
struct d3d8_texture *texture = impl_from_IDirect3DVolumeTexture8(iface); struct d3d8_texture *texture = impl_from_IDirect3DVolumeTexture8(iface);
struct wined3d_resource *sub_resource;
struct d3d8_volume *volume_impl; struct d3d8_volume *volume_impl;
HRESULT hr; HRESULT hr;
TRACE("iface %p, level %u.\n", iface, level); TRACE("iface %p, level %u.\n", iface, level);
wined3d_mutex_lock(); wined3d_mutex_lock();
if (!(sub_resource = wined3d_texture_get_sub_resource(texture->wined3d_texture, level))) if (!(volume_impl = wined3d_texture_get_sub_resource_parent(texture->wined3d_texture, level)))
hr = D3DERR_INVALIDCALL; hr = D3DERR_INVALIDCALL;
else else
{
volume_impl = wined3d_resource_get_parent(sub_resource);
hr = IDirect3DVolume8_UnlockBox(&volume_impl->IDirect3DVolume8_iface); hr = IDirect3DVolume8_UnlockBox(&volume_impl->IDirect3DVolume8_iface);
}
wined3d_mutex_unlock(); wined3d_mutex_unlock();
return hr; return hr;
......
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