mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-01-30 20:52:11 +01:00
[d3d11] Minor bug fixes
This commit is contained in:
parent
d4db877cdc
commit
55bc01d523
@ -286,12 +286,12 @@ namespace dxvk {
|
|||||||
|
|
||||||
|
|
||||||
void STDMETHODCALLTYPE D3D11DeviceContext::Begin(ID3D11Asynchronous *pAsync) {
|
void STDMETHODCALLTYPE D3D11DeviceContext::Begin(ID3D11Asynchronous *pAsync) {
|
||||||
Logger::err("D3D11DeviceContext::Begin: Not implemented");
|
// Logger::err("D3D11DeviceContext::Begin: Not implemented");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void STDMETHODCALLTYPE D3D11DeviceContext::End(ID3D11Asynchronous *pAsync) {
|
void STDMETHODCALLTYPE D3D11DeviceContext::End(ID3D11Asynchronous *pAsync) {
|
||||||
Logger::err("D3D11DeviceContext::End: Not implemented");
|
// Logger::err("D3D11DeviceContext::End: Not implemented");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -308,7 +308,7 @@ namespace dxvk {
|
|||||||
return E_INVALIDARG;
|
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;
|
viewInfo.numLevels = textureInfo.image->info().mipLevels - viewInfo.minLevel;
|
||||||
|
|
||||||
if (ppSRView == nullptr)
|
if (ppSRView == nullptr)
|
||||||
@ -685,8 +685,8 @@ namespace dxvk {
|
|||||||
pInputElementDescs[i].SemanticIndex);
|
pInputElementDescs[i].SemanticIndex);
|
||||||
|
|
||||||
if (entry == nullptr) {
|
if (entry == nullptr) {
|
||||||
Logger::err(str::format(
|
Logger::warn(str::format(
|
||||||
"D3D11Device::CreateInputLayout: No such semantic: ",
|
"D3D11Device: No such vertex shader semantic: ",
|
||||||
pInputElementDescs[i].SemanticName,
|
pInputElementDescs[i].SemanticName,
|
||||||
pInputElementDescs[i].SemanticIndex));
|
pInputElementDescs[i].SemanticIndex));
|
||||||
continue;
|
continue;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user