diff options
| author | JMC47 <JMC4789@gmail.com> | 2025-01-28 20:57:28 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-01-28 20:57:28 -0500 |
| commit | e16e3f9a610138bbb313e0b7e52d371f50a34f17 (patch) | |
| tree | 59f1a8b07bed6f348ad84108d321c99b1e1bbde5 /Source/Core/VideoCommon/AbstractTexture.cpp | |
| parent | 3f79aa23b46f0e6cee2292f420be18971f60b3ef (diff) | |
| parent | 25c805be9989c0ce1bd671edcf4c775529f5fe42 (diff) | |
Merge pull request #13291 from iwubcode/imgui_1_91_7
Externals / VideoCommon: update imgui to 1.91.7 and implot to v0.16
Diffstat (limited to 'Source/Core/VideoCommon/AbstractTexture.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/AbstractTexture.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/Core/VideoCommon/AbstractTexture.cpp b/Source/Core/VideoCommon/AbstractTexture.cpp index 08eec74fa3..d60925ab25 100644 --- a/Source/Core/VideoCommon/AbstractTexture.cpp +++ b/Source/Core/VideoCommon/AbstractTexture.cpp @@ -5,12 +5,17 @@ #include <algorithm> +#include <imgui.h> + #include "Common/Assert.h" #include "Common/Image.h" #include "Common/MsgHandler.h" #include "VideoCommon/AbstractGfx.h" #include "VideoCommon/AbstractStagingTexture.h" +static_assert(std::is_same_v<AbstractTexture::imgui_texture_id, ImTextureID>, + "The typedef should match ImTextureID in imgui"); + AbstractTexture::AbstractTexture(const TextureConfig& c) : m_config(c) { } |
