mirror of
https://github.com/game-stop/veejay.git
synced 2025-12-23 00:00:02 +01:00
Added new effect
git-svn-id: svn://code.dyne.org/veejay/trunk@9 eb8d1916-c9e9-0310-b8de-cf0c9472ead5
This commit is contained in:
@@ -118,6 +118,7 @@
|
||||
#include "effects/binaryoverlays.h"
|
||||
#include "effects/chromium.h"
|
||||
#include "effects/chromapalette.h"
|
||||
#include "effects/uvcorrect.h"
|
||||
|
||||
static struct
|
||||
{
|
||||
@@ -151,6 +152,7 @@ static struct
|
||||
{ fisheye_malloc, fisheye_free ,VJ_IMAGE_EFFECT_FISHEYE },
|
||||
{ swirl_malloc , swirl_free ,VJ_IMAGE_EFFECT_SWIRL },
|
||||
{ radialblur_malloc, radialblur_free, VJ_IMAGE_EFFECT_RADIALBLUR },
|
||||
{ uvcorrect_malloc, uvcorrect_free, VJ_IMAGE_EFFECT_UVCORRECT },
|
||||
{ NULL , NULL ,0 },
|
||||
};
|
||||
|
||||
@@ -411,6 +413,7 @@ void vj_effect_initialize(int width, int height)
|
||||
vj_effects[i + 56] = radialblur_init(width,height);
|
||||
vj_effects[i + 57] = chromium_init(width,height);
|
||||
vj_effects[i + 58] = chromapalette_init(width,height);
|
||||
vj_effects[i + 59] = uvcorrect_init(width,height);
|
||||
max_width = width;
|
||||
max_height = height;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user