summaryrefslogtreecommitdiff
path: root/ui/icon.h
blob: 3d0788a9647470625c3eb2a97e97fae2421d8454 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#pragma once

#include "imgui_wrap.h"
#include <filesystem>
#include <glArrays.h>
#include <glm/glm.hpp>

class Image;

class Icon {
public:
	explicit Icon(const std::filesystem::path & fileName);
	explicit Icon(const Image & image);

	const glm::vec2 size;
	ImTextureID operator*() const;

private:
	glTexture m_texture;
};