mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-08-04 11:35:35 +00:00
Vulkan sync
This commit is contained in:
parent
a09d042a3d
commit
bb0ca46194
2
hecl/extern/boo
vendored
2
hecl/extern/boo
vendored
@ -1 +1 @@
|
||||
Subproject commit 6600ff208cad0f506cde16ac26cdc86b4d9d7070
|
||||
Subproject commit 4d33cec75c3d74fefe6c76ba133d6c0b3648223a
|
@ -422,7 +422,7 @@ struct SPIRVBackendFactory : IShaderBackendFactory
|
||||
objOut =
|
||||
m_gfxFactory->newShaderPipeline(vertSource.c_str(), fragSource.c_str(),
|
||||
vertBlob, fragBlob, pipelineBlob, 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.getBackfaceCulling());
|
||||
if (!objOut)
|
||||
@ -495,7 +495,7 @@ struct SPIRVBackendFactory : IShaderBackendFactory
|
||||
m_gfxFactory->newShaderPipeline(nullptr, nullptr,
|
||||
vertBlob, fragBlob, pipelineBlob,
|
||||
tag.newVertexFormat(m_gfxFactory),
|
||||
blendSrc, blendDst,
|
||||
blendSrc, blendDst, boo::Primitive::TriStrips,
|
||||
tag.getDepthTest(), tag.getDepthWrite(),
|
||||
tag.getBackfaceCulling());
|
||||
if (!ret)
|
||||
@ -530,7 +530,7 @@ struct SPIRVBackendFactory : IShaderBackendFactory
|
||||
m_gfxFactory->newShaderPipeline(vertSource.c_str(), fragSource.c_str(),
|
||||
vertBlob, fragPipeBlob.first, fragPipeBlob.second,
|
||||
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.getBackfaceCulling());
|
||||
if (!ret)
|
||||
@ -612,7 +612,7 @@ struct SPIRVBackendFactory : IShaderBackendFactory
|
||||
m_gfxFactory->newShaderPipeline(nullptr, nullptr,
|
||||
vertBlob, fragBlob, pipelineBlob,
|
||||
tag.newVertexFormat(m_gfxFactory),
|
||||
blendSrc, blendDst,
|
||||
blendSrc, blendDst, boo::Primitive::TriStrips,
|
||||
tag.getDepthTest(), tag.getDepthWrite(),
|
||||
tag.getBackfaceCulling());
|
||||
if (!ret)
|
||||
|
Loading…
x
Reference in New Issue
Block a user