mirror of https://github.com/AxioDL/boo.git
D3D11 Compile fix
This commit is contained in:
parent
7bda89073d
commit
3b4d7abae6
|
@ -589,7 +589,7 @@ class D3D11ShaderPipeline : public GraphicsDataNode<IShaderPipeline>
|
||||||
s->shader(m_dShader);
|
s->shader(m_dShader);
|
||||||
|
|
||||||
if (control && evaluation)
|
if (control && evaluation)
|
||||||
m_topology = D3D11_PRIMITIVE_TOPOLOGY_1_CONTROL_POINT_PATCHLIST + info.patchSize - 1;
|
m_topology = D3D11_PRIMITIVE_TOPOLOGY(D3D11_PRIMITIVE_TOPOLOGY_1_CONTROL_POINT_PATCHLIST + info.patchSize - 1);
|
||||||
|
|
||||||
D3D11_CULL_MODE cullMode;
|
D3D11_CULL_MODE cullMode;
|
||||||
switch (info.culling)
|
switch (info.culling)
|
||||||
|
|
Loading…
Reference in New Issue