A domain-shader interface manages an executable program (a domain shader) that controls the domain-shader stage.
interface ID3D11DomainShader : public ID3D11DeviceChild
This interface inherits from another interface but does not have additional members.
The domain-shader interface has no methods; use HLSL to implement your shader functionality. All shaders are implemented from a common set of features referred to as the common-shader core..
To create a domain-shader interface, call ID3D11Device::CreateDomainShader. Before using a domain shader you must bind it to the device by calling ID3D11DeviceContext::DSSetShader.
This interface is defined in D3D11.h.
Header: Declared in d3d11_x.h (d3d11.h on other Windows platforms).
Library: Use d3d11_x.lib (d3d11.lib on other Windows platforms).