19 lines
329 B
C++
19 lines
329 B
C++
#pragma once
|
|
#include <SDL2/SDL.h>
|
|
|
|
namespace zxscreen
|
|
{
|
|
void init();
|
|
void reinit();
|
|
void refresh(const uint8_t dt);
|
|
void redraw(const bool present=true);
|
|
void present();
|
|
|
|
void incZoom();
|
|
void decZoom();
|
|
void toggleFullscreen();
|
|
const bool getFullscreen();
|
|
|
|
SDL_Renderer *getrenderer();
|
|
}
|