aboutsummaryrefslogtreecommitdiff
path: root/Plugins/black.c
diff options
context:
space:
mode:
Diffstat (limited to 'Plugins/black.c')
-rw-r--r--Plugins/black.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/Plugins/black.c b/Plugins/black.c
index 3716767..dbb672f 100644
--- a/Plugins/black.c
+++ b/Plugins/black.c
@@ -1,6 +1,8 @@
#include <stdlib.h>
#include "plugin.h"
+INFO("total blackness")
+
void perform_effect(_frame f, _args a)
{
memset(f.bits, 0, f.height*f.lpitch);
@@ -11,3 +13,4 @@ void perform_copy(_frame f1, _frame f2, _args a)
memset(f1.bits, 0, f1.height*f1.lpitch);
memset(f2.bits, 0, f2.height*f2.lpitch);
}
+