satdump/src-interface/loader/loader.h

11 lines
209 B
C
Raw Normal View History

2023-08-17 21:05:15 -04:00
#pragma once
#ifdef __ANDROID__
#include <GLES3/gl3.h>
#else
#include <GLFW/glfw3.h>
#endif
namespace satdump
{
void draw_loader(int width, int height, float scale, GLuint *image_texture, std::string str);
2023-08-17 21:05:15 -04:00
}