mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-10-21 07:29:26 +00:00
Update code to work with new version of ImGui.
UpdateImGuiTexture now handles creating font textures and modifying them.
This commit is contained in:
parent
7315acb981
commit
affc22f17d
4 changed files with 117 additions and 29 deletions
|
@ -20,6 +20,11 @@ AbstractTexture::AbstractTexture(const TextureConfig& c) : m_config(c)
|
|||
{
|
||||
}
|
||||
|
||||
AbstractTexture::operator ImTextureRef() const
|
||||
{
|
||||
return ImTextureRef(reinterpret_cast<AbstractTexture::imgui_texture_id>(this));
|
||||
}
|
||||
|
||||
void AbstractTexture::FinishedRendering()
|
||||
{
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue