mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-10 11:47:42 +00:00
Update shader pipeline calls
This commit is contained in:
2
hecl/extern/boo
vendored
2
hecl/extern/boo
vendored
Submodule hecl/extern/boo updated: ca38805776...6600ff208c
@@ -276,7 +276,7 @@ struct GLSLBackendFactory : IShaderBackendFactory
|
|||||||
m_gfxFactory->newShaderPipeline(vertSource.c_str(), fragSource.c_str(),
|
m_gfxFactory->newShaderPipeline(vertSource.c_str(), fragSource.c_str(),
|
||||||
m_backend.m_texMapEnd, "texs",
|
m_backend.m_texMapEnd, "texs",
|
||||||
1, STD_BLOCKNAMES,
|
1, STD_BLOCKNAMES,
|
||||||
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)
|
||||||
@@ -306,7 +306,7 @@ struct GLSLBackendFactory : IShaderBackendFactory
|
|||||||
m_gfxFactory->newShaderPipeline(vertSource.c_str(), fragSource.c_str(),
|
m_gfxFactory->newShaderPipeline(vertSource.c_str(), fragSource.c_str(),
|
||||||
texMapEnd, "texs",
|
texMapEnd, "texs",
|
||||||
1, STD_BLOCKNAMES,
|
1, STD_BLOCKNAMES,
|
||||||
blendSrc, blendDst,
|
blendSrc, blendDst, boo::Primitive::TriStrips,
|
||||||
tag.getDepthTest(), tag.getDepthWrite(),
|
tag.getDepthTest(), tag.getDepthWrite(),
|
||||||
tag.getBackfaceCulling());
|
tag.getBackfaceCulling());
|
||||||
if (!ret)
|
if (!ret)
|
||||||
@@ -339,7 +339,7 @@ struct GLSLBackendFactory : IShaderBackendFactory
|
|||||||
m_gfxFactory->newShaderPipeline(vertSource.c_str(), fragSources.back().c_str(),
|
m_gfxFactory->newShaderPipeline(vertSource.c_str(), fragSources.back().c_str(),
|
||||||
m_backend.m_texMapEnd, "texs",
|
m_backend.m_texMapEnd, "texs",
|
||||||
1, STD_BLOCKNAMES,
|
1, STD_BLOCKNAMES,
|
||||||
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)
|
||||||
@@ -376,7 +376,7 @@ struct GLSLBackendFactory : IShaderBackendFactory
|
|||||||
m_gfxFactory->newShaderPipeline(vertSource.c_str(), fragSource.c_str(),
|
m_gfxFactory->newShaderPipeline(vertSource.c_str(), fragSource.c_str(),
|
||||||
texMapEnd, "texs",
|
texMapEnd, "texs",
|
||||||
1, STD_BLOCKNAMES,
|
1, STD_BLOCKNAMES,
|
||||||
blendSrc, blendDst,
|
blendSrc, blendDst, boo::Primitive::TriStrips,
|
||||||
tag.getDepthTest(), tag.getDepthWrite(),
|
tag.getDepthTest(), tag.getDepthWrite(),
|
||||||
tag.getBackfaceCulling());
|
tag.getBackfaceCulling());
|
||||||
if (!ret)
|
if (!ret)
|
||||||
|
|||||||
Reference in New Issue
Block a user