mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-01-18 11:52:12 +01:00
[d3d11] Enabled tessellation shaders
Note that applications that require tessellation support will not work as of yet.
This commit is contained in:
parent
2271814d95
commit
4fed7521f7
@ -968,10 +968,9 @@ namespace dxvk {
|
||||
ID3D11HullShader** ppHullShader) {
|
||||
D3D11ShaderModule module;
|
||||
|
||||
Logger::warn("D3D11: CreateHullShader: Tessellation shaders not yet supported");
|
||||
// if (FAILED(this->CreateShaderModule(&module,
|
||||
// pShaderBytecode, BytecodeLength, pClassLinkage)))
|
||||
// return E_INVALIDARG;
|
||||
if (FAILED(this->CreateShaderModule(&module,
|
||||
pShaderBytecode, BytecodeLength, pClassLinkage)))
|
||||
return E_INVALIDARG;
|
||||
|
||||
if (ppHullShader == nullptr)
|
||||
return S_FALSE;
|
||||
@ -989,10 +988,9 @@ namespace dxvk {
|
||||
ID3D11DomainShader** ppDomainShader) {
|
||||
D3D11ShaderModule module;
|
||||
|
||||
Logger::warn("D3D11: CreateDomainShader: Tessellation shaders not yet supported");
|
||||
// if (FAILED(this->CreateShaderModule(&module,
|
||||
// pShaderBytecode, BytecodeLength, pClassLinkage)))
|
||||
// return E_INVALIDARG;
|
||||
if (FAILED(this->CreateShaderModule(&module,
|
||||
pShaderBytecode, BytecodeLength, pClassLinkage)))
|
||||
return E_INVALIDARG;
|
||||
|
||||
if (ppDomainShader == nullptr)
|
||||
return S_FALSE;
|
||||
|
Loading…
x
Reference in New Issue
Block a user