satdump/src-interface/loader/loader.h
2023-08-17 21:05:15 -04:00

11 lines
No EOL
196 B
C++

#pragma once
#ifdef __ANDROID__
#include <GLES3/gl3.h>
#else
#include <GLFW/glfw3.h>
#endif
namespace satdump
{
void draw_loader(int width, int height, GLuint *image_texture, std::string str);
}