diff options
Diffstat (limited to 'canvas.lv2/canvas.lv2/render.h')
-rw-r--r-- | canvas.lv2/canvas.lv2/render.h | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/canvas.lv2/canvas.lv2/render.h b/canvas.lv2/canvas.lv2/render.h index b809804..6d9580c 100644 --- a/canvas.lv2/canvas.lv2/render.h +++ b/canvas.lv2/canvas.lv2/render.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2016 Hanspeter Portner (dev@open-music-kontrollers.ch) + * Copyright (c) 2016-2021 Hanspeter Portner (dev@open-music-kontrollers.ch) * * This is free software: you can redistribute it and/or modify * it under the terms of the Artistic License 2.0 as published by @@ -18,12 +18,13 @@ #ifndef _LV2_CANVAS_RENDER_H #define _LV2_CANVAS_RENDER_H +// Do NOT use this header directly, use render_{nanovg,cairo}.h instead +#include <canvas.lv2/canvas.h> + #ifdef __cplusplus extern "C" { #endif -#include <canvas.lv2/canvas.h> - #define LV2_CANVAS_NUM_METHODS 26 typedef struct _LV2_Canvas_Meth LV2_Canvas_Meth; @@ -78,10 +79,4 @@ _lv2_canvas_render_get_type(const LV2_Atom *body, LV2_URID type) } #endif -#if defined(LV2_CANVAS_RENDER_NANOVG) -# include <canvas.lv2/render_nanovg.h> -#else -# include <canvas.lv2/render_cairo.h> -#endif - #endif // _LV2_CANVAS_RENDER_H |