New upstream version 0.15.4+dfsg1

This commit is contained in:
Sebastian Ramacher 2016-08-28 14:07:43 +02:00
parent 55d5047af0
commit 67704ac59c
359 changed files with 8423 additions and 1050 deletions

View file

@ -5,8 +5,9 @@ struct test_filter {
gs_effect_t *whatever;
};
static const char *filter_getname(void)
static const char *filter_getname(void *unused)
{
UNUSED_PARAMETER(unused);
return "Test";
}

View file

@ -10,8 +10,9 @@ struct random_tex {
bool initialized;
};
static const char *random_getname(void)
static const char *random_getname(void *unused)
{
UNUSED_PARAMETER(unused);
return "20x20 Random Pixel Texture Source (Test)";
}

View file

@ -58,8 +58,9 @@ static void *sinewave_thread(void *pdata)
/* ------------------------------------------------------------------------- */
static const char *sinewave_getname(void)
static const char *sinewave_getname(void *unused)
{
UNUSED_PARAMETER(unused);
return "Sinewave Sound Source (Test)";
}