Module: wine Branch: master Commit: f39e7182e16f9d458e01e1af6c80e36fbbd0fe64 URL: http://source.winehq.org/git/wine.git/?a=commit;h=f39e7182e16f9d458e01e1af6c...
Author: Gerald Pfeifer gerald@pfeifer.com Date: Wed Jun 3 00:55:08 2009 +0200
d3d9: Use WINED3DPOOL_DEFAULT instead of D3DPOOL_DEFAULT as appropriate.
---
dlls/d3d9/device.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/dlls/d3d9/device.c b/dlls/d3d9/device.c index 9508ff5..8f95ad1 100644 --- a/dlls/d3d9/device.c +++ b/dlls/d3d9/device.c @@ -2002,7 +2002,8 @@ static HRESULT STDMETHODCALLTYPE device_parent_CreateSurface(IWineD3DDeviceParen "\tpool %#x, level %u, face %u, surface %p\n", iface, superior, width, height, format, usage, pool, level, face, surface);
- if (pool == D3DPOOL_DEFAULT && !(usage & D3DUSAGE_DYNAMIC)) lockable = FALSE; + if (pool == WINED3DPOOL_DEFAULT && !(usage & D3DUSAGE_DYNAMIC)) + lockable = FALSE;
hr = IDirect3DDevice9Impl_CreateSurface((IDirect3DDevice9Ex *)This, width, height, d3dformat_from_wined3dformat(format), lockable, FALSE /* Discard */, level,