mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-07-16 20:45:53 +00:00
D3D sync
This commit is contained in:
parent
bb0ca46194
commit
3015372883
2
hecl/extern/boo
vendored
2
hecl/extern/boo
vendored
@ -1 +1 @@
|
|||||||
Subproject commit 4d33cec75c3d74fefe6c76ba133d6c0b3648223a
|
Subproject commit 9ff168df2dd719ca93fc8198f5d1d4795ada5aa3
|
@ -264,7 +264,7 @@ struct HLSLBackendFactory : IShaderBackendFactory
|
|||||||
m_gfxFactory->newShaderPipeline(vertSource.c_str(), fragSource.c_str(),
|
m_gfxFactory->newShaderPipeline(vertSource.c_str(), fragSource.c_str(),
|
||||||
vertBlob, fragBlob, pipelineBlob,
|
vertBlob, fragBlob, pipelineBlob,
|
||||||
tag.newVertexFormat(m_gfxFactory),
|
tag.newVertexFormat(m_gfxFactory),
|
||||||
m_backend.m_blendSrc, m_backend.m_blendDst,
|
m_backend.m_blendSrc, m_backend.m_blendDst, boo::Primitive::TriStrips,
|
||||||
tag.getDepthTest(), tag.getDepthWrite(),
|
tag.getDepthTest(), tag.getDepthWrite(),
|
||||||
tag.getBackfaceCulling());
|
tag.getBackfaceCulling());
|
||||||
if (!objOut)
|
if (!objOut)
|
||||||
@ -349,7 +349,7 @@ struct HLSLBackendFactory : IShaderBackendFactory
|
|||||||
m_gfxFactory->newShaderPipeline(nullptr, nullptr,
|
m_gfxFactory->newShaderPipeline(nullptr, nullptr,
|
||||||
vertBlob, fragBlob, pipelineBlob,
|
vertBlob, fragBlob, pipelineBlob,
|
||||||
tag.newVertexFormat(m_gfxFactory),
|
tag.newVertexFormat(m_gfxFactory),
|
||||||
blendSrc, blendDst,
|
blendSrc, blendDst, boo::Primitive::TriStrips,
|
||||||
tag.getDepthTest(), tag.getDepthWrite(),
|
tag.getDepthTest(), tag.getDepthWrite(),
|
||||||
tag.getBackfaceCulling());
|
tag.getBackfaceCulling());
|
||||||
if (!ret)
|
if (!ret)
|
||||||
@ -383,7 +383,7 @@ struct HLSLBackendFactory : IShaderBackendFactory
|
|||||||
m_gfxFactory->newShaderPipeline(vertSource.c_str(), fragSource.c_str(),
|
m_gfxFactory->newShaderPipeline(vertSource.c_str(), fragSource.c_str(),
|
||||||
vertBlob, fragPipeBlob.first, fragPipeBlob.second,
|
vertBlob, fragPipeBlob.first, fragPipeBlob.second,
|
||||||
tag.newVertexFormat(m_gfxFactory),
|
tag.newVertexFormat(m_gfxFactory),
|
||||||
m_backend.m_blendSrc, m_backend.m_blendDst,
|
m_backend.m_blendSrc, m_backend.m_blendDst, boo::Primitive::TriStrips,
|
||||||
tag.getDepthTest(), tag.getDepthWrite(),
|
tag.getDepthTest(), tag.getDepthWrite(),
|
||||||
tag.getBackfaceCulling());
|
tag.getBackfaceCulling());
|
||||||
if (!ret)
|
if (!ret)
|
||||||
@ -471,7 +471,7 @@ struct HLSLBackendFactory : IShaderBackendFactory
|
|||||||
m_gfxFactory->newShaderPipeline(nullptr, nullptr,
|
m_gfxFactory->newShaderPipeline(nullptr, nullptr,
|
||||||
vertBlob, fragBlob, pipelineBlob,
|
vertBlob, fragBlob, pipelineBlob,
|
||||||
tag.newVertexFormat(m_gfxFactory),
|
tag.newVertexFormat(m_gfxFactory),
|
||||||
blendSrc, blendDst,
|
blendSrc, blendDst, boo::Primitive::TriStrips,
|
||||||
tag.getDepthTest(), tag.getDepthWrite(),
|
tag.getDepthTest(), tag.getDepthWrite(),
|
||||||
tag.getBackfaceCulling());
|
tag.getBackfaceCulling());
|
||||||
if (!ret)
|
if (!ret)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user