mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
19 lines
481 B
C++
19 lines
481 B
C++
#pragma once
|
|
#include "imgui/imgui.h"
|
|
#include "imgui_impl_android.h"
|
|
#include "imgui_impl_opengl3.h"
|
|
#include "core/backend.h"
|
|
#include "core/style.h"
|
|
#include <stdint.h>
|
|
#include <utility>
|
|
#include <EGL/egl.h>
|
|
#include <GLES3/gl3.h>
|
|
#include <android_native_app_glue.h>
|
|
|
|
float funcDeviceScale();
|
|
void funcRebuildFonts();
|
|
void funcSetMousePos(int, int);
|
|
std::pair<int, int> funcBeginFrame();
|
|
void funcEndFrame();
|
|
void funcSetIcon(uint8_t*, int, int);
|
|
void bindBackendFunctions();
|