d3d9: Disallow creating managed 3D textures on d3d9ex devices.
Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
d9db221f0d
commit
8d567bc9e2
|
@ -4459,10 +4459,9 @@ static void test_resource_access(void)
|
|||
|
||||
hr = IDirect3DDevice9Ex_CreateVolumeTexture(device, 16, 16, 1, 1,
|
||||
tests[i].usage, format, tests[i].pool, &texture, NULL);
|
||||
todo_wine_if(hr == D3D_OK && tests[i].pool == D3DPOOL_MANAGED)
|
||||
ok(hr == (!(tests[i].usage & ~D3DUSAGE_DYNAMIC) && tests[i].pool != D3DPOOL_MANAGED
|
||||
? D3D_OK : D3DERR_INVALIDCALL),
|
||||
"Test %u: Got unexpected hr %#x.\n", i, hr);
|
||||
ok(hr == (!(tests[i].usage & ~D3DUSAGE_DYNAMIC) && tests[i].pool != D3DPOOL_MANAGED
|
||||
? D3D_OK : D3DERR_INVALIDCALL),
|
||||
"Test %u: Got unexpected hr %#x.\n", i, hr);
|
||||
if (FAILED(hr))
|
||||
continue;
|
||||
|
||||
|
|
|
@ -1451,6 +1451,12 @@ HRESULT volumetexture_init(struct d3d9_texture *texture, struct d3d9_device *dev
|
|||
struct wined3d_resource_desc desc;
|
||||
HRESULT hr;
|
||||
|
||||
if (pool == D3DPOOL_MANAGED && device->d3d_parent->extended)
|
||||
{
|
||||
WARN("Managed resources are not supported by d3d9ex devices.\n");
|
||||
return D3DERR_INVALIDCALL;
|
||||
}
|
||||
|
||||
/* In d3d9, 3D textures can't be used as rendertarget or depth/stencil buffer. */
|
||||
if (usage & (D3DUSAGE_RENDERTARGET | D3DUSAGE_DEPTHSTENCIL))
|
||||
return D3DERR_INVALIDCALL;
|
||||
|
|
Loading…
Reference in New Issue