From 14c3faab5377c91d40ef72d626fa2e60198a7957 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Wed, 2 Jan 2013 17:13:32 +0100 Subject: [PATCH] (GX) Create stub gx_set_shader function --- gx/gx_video.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/gx/gx_video.c b/gx/gx_video.c index ad2328eb5b..eb118e64e7 100644 --- a/gx/gx_video.c +++ b/gx/gx_video.c @@ -997,6 +997,15 @@ static void gx_apply_state_changes(void) gx->should_resize = true; } +static bool gx_set_shader(void *data, enum rarch_shader_type type, const char *path) +{ + (void)data; + (void)type; + (void)path; + + return false; +} + const video_driver_t video_gx = { .init = gx_init, .frame = gx_frame,