d3d8: Remove D3DFMT_R8G8B8 special handling.
This commit is contained in:
parent
151cf2696b
commit
77fa1a5c67
|
@ -229,14 +229,6 @@ static HRESULT WINAPI IDirect3D8Impl_CheckDeviceFormat(LPDIRECT3D8 iface, UINT A
|
||||||
TRACE("iface %p, adapter %u, device_type %#x, adapter_format %#x, usage %#x, resource_type %#x, format %#x.\n",
|
TRACE("iface %p, adapter %u, device_type %#x, adapter_format %#x, usage %#x, resource_type %#x, format %#x.\n",
|
||||||
iface, Adapter, DeviceType, AdapterFormat, Usage, RType, CheckFormat);
|
iface, Adapter, DeviceType, AdapterFormat, Usage, RType, CheckFormat);
|
||||||
|
|
||||||
if(CheckFormat == D3DFMT_R8G8B8)
|
|
||||||
{
|
|
||||||
/* See comment in dlls/d3d9/directx.c, IDirect3D9Impl_CheckDeviceFormat for details */
|
|
||||||
WARN("D3DFMT_R8G8B8 is not available on windows, returning D3DERR_NOTAVAILABLE\n");
|
|
||||||
return D3DERR_NOTAVAILABLE;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
switch(RType) {
|
switch(RType) {
|
||||||
case D3DRTYPE_VERTEXBUFFER:
|
case D3DRTYPE_VERTEXBUFFER:
|
||||||
case D3DRTYPE_INDEXBUFFER:
|
case D3DRTYPE_INDEXBUFFER:
|
||||||
|
|
Loading…
Reference in New Issue