mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2024-11-06 10:47:34 +01:00
12 lines
286 B
C++
12 lines
286 B
C++
#pragma once
|
|
#include <string>
|
|
|
|
namespace backend {
|
|
int init(std::string resDir = "");
|
|
void beginFrame();
|
|
void render(bool vsync = true);
|
|
void getMouseScreenPos(double& x, double& y);
|
|
void setMouseScreenPos(double x, double y);
|
|
int renderLoop();
|
|
int end();
|
|
} |