diff options
author | wm4 <wm4@nowhere> | 2015-09-11 08:15:24 +0200 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2015-09-11 08:16:17 +0200 |
commit | fdf6e5f5aa0cf79b57894f9a32628c7c7af8bc10 (patch) | |
tree | 6a4c5bb72a7d774a153d80e409c0e7959ea1ac94 | |
parent | e9822f6012193bf00e81b38b61f3ccbf6fe25cdb (diff) |
vo_rpi: fix compilation
The recent OpenGL refactor commits forgot to update this file.
-rw-r--r-- | video/out/vo_rpi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/video/out/vo_rpi.c b/video/out/vo_rpi.c index d637eeca46..3c79797ff0 100644 --- a/video/out/vo_rpi.c +++ b/video/out/vo_rpi.c @@ -38,9 +38,9 @@ #include "vo.h" #include "video/mp_image.h" #include "sub/osd.h" -#include "gl_osd.h" -#include "gl_rpi.h" +#include "opengl/osd.h" +#include "opengl/rpi.h" struct priv { DISPMANX_DISPLAY_HANDLE_T display; |