mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
16 lines
393 B
C++
16 lines
393 B
C++
#pragma once
|
|
#include "imgui/imgui.h"
|
|
#include "imgui_impl_android.h"
|
|
#include "imgui_impl_opengl3.h"
|
|
#include "main_ui.h"
|
|
#include <stdint.h>
|
|
#include <utility>
|
|
#include <EGL/egl.h>
|
|
#include <GLES3/gl3.h>
|
|
|
|
// Standard bound functions
|
|
void funcSetMousePos(int, int);
|
|
std::pair<int, int> funcBeginFrame();
|
|
void funcEndFrame();
|
|
void funcSetIcon(uint8_t*, int, int);
|
|
void bindBackendFunctions();
|