mirror of https://github.com/AxioDL/metaforce.git
Vulkan sync
This commit is contained in:
parent
23977d6097
commit
737b688295
|
@ -289,7 +289,7 @@ void TextView::Resources::init(boo::VulkanDataFactory* factory, FontCache* fcach
|
||||||
m_regular =
|
m_regular =
|
||||||
factory->newShaderPipeline(GLSLVS, GLSLFSReg, m_vtxFmt,
|
factory->newShaderPipeline(GLSLVS, GLSLFSReg, m_vtxFmt,
|
||||||
boo::BlendFactor::SrcAlpha, boo::BlendFactor::InvSrcAlpha,
|
boo::BlendFactor::SrcAlpha, boo::BlendFactor::InvSrcAlpha,
|
||||||
false, false, false);
|
boo::Primitive::TriStrips, false, false, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -300,7 +300,7 @@ void View::Resources::init(boo::VulkanDataFactory* factory, const IThemeData& th
|
||||||
|
|
||||||
m_solidShader = factory->newShaderPipeline(GLSLSolidVS, GLSLSolidFS, m_solidVtxFmt,
|
m_solidShader = factory->newShaderPipeline(GLSLSolidVS, GLSLSolidFS, m_solidVtxFmt,
|
||||||
boo::BlendFactor::SrcAlpha, boo::BlendFactor::InvSrcAlpha,
|
boo::BlendFactor::SrcAlpha, boo::BlendFactor::InvSrcAlpha,
|
||||||
false, false, false);
|
boo::Primitive::TriStrips, false, false, false);
|
||||||
|
|
||||||
boo::VertexElementDescriptor texvdescs[] =
|
boo::VertexElementDescriptor texvdescs[] =
|
||||||
{
|
{
|
||||||
|
@ -311,7 +311,7 @@ void View::Resources::init(boo::VulkanDataFactory* factory, const IThemeData& th
|
||||||
|
|
||||||
m_texShader = factory->newShaderPipeline(GLSLTexVS, GLSLTexFS, m_texVtxFmt,
|
m_texShader = factory->newShaderPipeline(GLSLTexVS, GLSLTexFS, m_texVtxFmt,
|
||||||
boo::BlendFactor::SrcAlpha, boo::BlendFactor::InvSrcAlpha,
|
boo::BlendFactor::SrcAlpha, boo::BlendFactor::InvSrcAlpha,
|
||||||
false, false, false);
|
boo::Primitive::TriStrips, false, false, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue