aboutsummaryrefslogtreecommitdiff
path: root/src/sdl/draw.h
blob: 26f7cb09a8f164f762dcd23598b59fda5a250737 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef DRAW_H
#define DRAW_H

#include <stddef.h> // size_t
#include <SDL.h>
#include "../libsok/sok.h" 
#include "../text/levels.h"

typedef struct {
  SDL_Renderer * const renderer;
  const sok_ctx_t * const ctx;
  const size_t * const level_num;
  const level_t *level;
  const size_t * const zoom;

  // render offset
  int render_ofs_x, render_ofs_y;
} draw_ctx_t;

void draw(draw_ctx_t * const);

#endif /* DRAW_H */