summaryrefslogtreecommitdiff
path: root/src/render/renderer_momo.h
blob: 3b9084bd71183ca10b212930bae029fd3fb3f74d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#pragma once

#ifdef CAMU_HAVE_SUBTITLES
#include <ass/ass.h>
#endif

#include "momo/momo.h"

#include "renderer.h"

struct camu_renderer_momo {
    struct camu_renderer r;
    MOMO_Renderer mmr;
#ifdef CAMU_HAVE_SUBTITLES
    ASS_Library *ass;
#endif
};

struct camu_renderer *camu_renderer_momo_create(void);