From 25c805be9989c0ce1bd671edcf4c775529f5fe42 Mon Sep 17 00:00:00 2001 From: iwubcode Date: Mon, 20 Jan 2025 14:40:27 -0600 Subject: Externals / VideoCommon: update imgui to 1.91.7 and implot to v0.16; imgui changed types for ImTextureId, which was addressed by using an implicit cast --- Source/Core/VideoCommon/AbstractTexture.cpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'Source/Core/VideoCommon/AbstractTexture.cpp') 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 +#include + #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, + "The typedef should match ImTextureID in imgui"); + AbstractTexture::AbstractTexture(const TextureConfig& c) : m_config(c) { } -- cgit v1.2.3