d3d9: Use WINED3DPOOL_DEFAULT instead of D3DPOOL_DEFAULT as appropriate.
This commit is contained in:
parent
8588748bc8
commit
f39e7182e1
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue