From 7c3d78fd82d4d1e1a0b15284386d39b4014cb7d1 Mon Sep 17 00:00:00 2001 From: Niklas Haas Date: Thu, 21 Apr 2016 01:33:13 +0200 Subject: vo_opengl: support external user hooks This allows users to add their own near-arbitrary hooks to the vo_opengl processing pipeline, greatly enhancing the flexibility of user shaders. This enables, among other things, user shaders such as CrossBilateral, SuperRes, LumaSharpen and many more. To make parsing the user shaders easier, shaders are now loaded as bstrs, and the hooks are set up during video reconfig instead of on every single frame. --- video/out/opengl/video.h | 1 + 1 file changed, 1 insertion(+) (limited to 'video/out/opengl/video.h') diff --git a/video/out/opengl/video.h b/video/out/opengl/video.h index 4702f8cc79..5a14cb3ee5 100644 --- a/video/out/opengl/video.h +++ b/video/out/opengl/video.h @@ -108,6 +108,7 @@ struct gl_video_opts { char *scale_shader; char **pre_shaders; char **post_shaders; + char **user_shaders; int deband; struct deband_opts *deband_opts; float unsharp; -- cgit v1.2.3