diff --git a/src/d3d11/d3d11_context.cpp b/src/d3d11/d3d11_context.cpp index 42bc9073..0fd94653 100644 --- a/src/d3d11/d3d11_context.cpp +++ b/src/d3d11/d3d11_context.cpp @@ -286,12 +286,12 @@ namespace dxvk { void STDMETHODCALLTYPE D3D11DeviceContext::Begin(ID3D11Asynchronous *pAsync) { - Logger::err("D3D11DeviceContext::Begin: Not implemented"); +// Logger::err("D3D11DeviceContext::Begin: Not implemented"); } void STDMETHODCALLTYPE D3D11DeviceContext::End(ID3D11Asynchronous *pAsync) { - Logger::err("D3D11DeviceContext::End: Not implemented"); +// Logger::err("D3D11DeviceContext::End: Not implemented"); } diff --git a/src/d3d11/d3d11_device.cpp b/src/d3d11/d3d11_device.cpp index b0105136..70e35d7b 100644 --- a/src/d3d11/d3d11_device.cpp +++ b/src/d3d11/d3d11_device.cpp @@ -308,7 +308,7 @@ namespace dxvk { return E_INVALIDARG; } - if (viewInfo.numLayers == 0 || viewInfo.numLayers == 0xFFFFFFFF) + if (viewInfo.numLevels == 0 || viewInfo.numLevels == 0xFFFFFFFF) viewInfo.numLevels = textureInfo.image->info().mipLevels - viewInfo.minLevel; if (ppSRView == nullptr) @@ -685,8 +685,8 @@ namespace dxvk { pInputElementDescs[i].SemanticIndex); if (entry == nullptr) { - Logger::err(str::format( - "D3D11Device::CreateInputLayout: No such semantic: ", + Logger::warn(str::format( + "D3D11Device: No such vertex shader semantic: ", pInputElementDescs[i].SemanticName, pInputElementDescs[i].SemanticIndex)); continue;