summaryrefslogtreecommitdiff
path: root/ui/icon.h
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2025-03-15 13:50:51 +0000
committerDan Goodliffe <dan@randomdan.homeip.net>2025-03-15 13:50:51 +0000
commit9d200bc8f749f8d64e4f1e630ddf3a797b9b8fe1 (patch)
treec29773685b65c20fdbf475708d2dccca4344b008 /ui/icon.h
parentTidy glArrays, fixes warnings (diff)
downloadilt-9d200bc8f749f8d64e4f1e630ddf3a797b9b8fe1.tar.bz2
ilt-9d200bc8f749f8d64e4f1e630ddf3a797b9b8fe1.tar.xz
ilt-9d200bc8f749f8d64e4f1e630ddf3a797b9b8fe1.zip
Add operator to get ImTextureID from an Icon
Diffstat (limited to 'ui/icon.h')
-rw-r--r--ui/icon.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/ui/icon.h b/ui/icon.h
index 76cd3ae..5f3a812 100644
--- a/ui/icon.h
+++ b/ui/icon.h
@@ -1,5 +1,6 @@
#pragma once
+#include "imgui_wrap.h"
#include <filesystem>
#include <glArrays.h>
#include <glm/glm.hpp>
@@ -13,6 +14,7 @@ public:
void Bind() const;
const glm::vec2 size;
+ ImTextureID operator*() const;
private:
glTexture m_texture;