SDRPlusPlus/core/src/gui/icons.h

15 lines
295 B
C
Raw Normal View History

2020-07-19 15:59:44 +02:00
#pragma once
#include <imgui/imgui.h>
#include <stdint.h>
#include <GL/glew.h>
2020-09-06 15:39:09 +02:00
#include <config.h>
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;
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();
}