18 lines
297 B
C++
18 lines
297 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();
|
|
|
|
SDL_Renderer *getrenderer();
|
|
}
|