Merge pull request #6931 from CPkmn/patch-6

D3D9 Get maxAnisotropyLevel from device caps
This commit is contained in:
Henrik Rydgård 2014-09-21 22:31:31 +02:00
commit b9d3443e1b

View file

@ -74,8 +74,20 @@ TextureCacheDX9::TextureCacheDX9() : clearCacheNextFrame_(false), lowMemoryMode_
memset(clutBufConverted_, 0, 4096 * sizeof(u32));
memset(clutBufRaw_, 0, 4096 * sizeof(u32));
// TODO: Get from device caps!
maxAnisotropyLevel = 16;
D3DCAPS9 pCaps;
ZeroMemory(&pCaps, sizeof(pCaps));
HRESULT result = 0;
if (pD3DdeviceEx) {
result = pD3DdeviceEx->GetDeviceCaps(&pCaps);
} else {
result = pD3Ddevice->GetDeviceCaps(&pCaps);
}
if (FAILED(result)) {
WARN_LOG(G3D, "Failed to get the device caps!");
maxAnisotropyLevel = 16;
} else {
maxAnisotropyLevel = pCaps.MaxAnisotropy;
}
SetupTextureDecoder();
}