mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
11 lines
No EOL
209 B
C++
11 lines
No EOL
209 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, float scale, GLuint *image_texture, std::string str);
|
|
} |