mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-30 04:38:49 +00:00
Vulkan: Implement post-processing backend
No new features, just parity with OpenGL.
This commit is contained in:
parent
a10e8b1ef5
commit
417a4ca206
11 changed files with 445 additions and 74 deletions
|
@ -175,6 +175,11 @@ RasterFont::~RasterFont()
|
|||
vkDestroyShaderModule(g_vulkan_context->GetDevice(), m_fragment_shader, nullptr);
|
||||
}
|
||||
|
||||
const Texture2D* RasterFont::GetTexture() const
|
||||
{
|
||||
return m_texture.get();
|
||||
}
|
||||
|
||||
bool RasterFont::Initialize()
|
||||
{
|
||||
// Create shaders and texture
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue