summaryrefslogtreecommitdiff
path: root/include/ui/sdl2.h
blob: 3ad5d7d6e0a08ddf25882eb9ece4a8a7f0ca3fa8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef SDL2_H
#define SDL2_H

struct sdl2_console {
    DisplayChangeListener dcl;
    DisplaySurface *surface;
    SDL_Texture *texture;
    SDL_Window *real_window;
    SDL_Renderer *real_renderer;
    int idx;
    int last_vm_running; /* per console for caption reasons */
    int x, y;
    int hidden;
};

#endif /* SDL2_H */