(D3D) Buildfix

This commit is contained in:
twinaphex 2015-04-06 18:04:41 +02:00
parent a9a4006ad8
commit c027d1a367

View File

@ -114,12 +114,15 @@ static bool null_renderchain_init_shader_fvf(void *data, void *pass_data)
return true; return true;
} }
static void null_renderchain_add_lut(void *data, static bool null_renderchain_add_lut(void *data,
unsigned index, unsigned i) const char *id, const char *path, bool smooth)
{ {
(void)data; (void)data;
(void)index; (void)id;
(void)i; (void)path;
(void)smooth;
return true;
} }
static bool null_renderchain_add_pass(void *data, const void *info_data) static bool null_renderchain_add_pass(void *data, const void *info_data)