mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2024-11-15 15:02:52 +01:00
18 lines
429 B
C++
18 lines
429 B
C++
#pragma once
|
|
#include <imgui/imgui.h>
|
|
#include <GL/glew.h>
|
|
#include <string>
|
|
|
|
namespace icons {
|
|
extern ImTextureID LOGO;
|
|
extern ImTextureID PLAY;
|
|
extern ImTextureID STOP;
|
|
extern ImTextureID MENU;
|
|
extern ImTextureID MUTED;
|
|
extern ImTextureID UNMUTED;
|
|
extern ImTextureID NORMAL_TUNING;
|
|
extern ImTextureID CENTER_TUNING;
|
|
|
|
GLuint loadTexture(std::string path);
|
|
bool load(std::string resDir);
|
|
} |