SDRPlusPlus/core/src/gui/icons.h

16 lines
335 B
C
Raw Normal View History

2020-07-19 15:59:44 +02:00
#pragma once
#include <imgui/imgui.h>
#include <GL/glew.h>
#include <string>
2020-07-19 15:59:44 +02:00
namespace icons {
2020-07-19 18:09:59 +02:00
extern ImTextureID LOGO;
2020-07-19 15:59:44 +02:00
extern ImTextureID PLAY;
extern ImTextureID STOP;
2020-08-21 15:34:50 +02:00
extern ImTextureID MENU;
extern ImTextureID MUTED;
extern ImTextureID UNMUTED;
2020-07-19 15:59:44 +02:00
2020-09-24 19:36:57 +02:00
GLuint loadTexture(std::string path);
2020-07-19 15:59:44 +02:00
void load();
}