comparison src/paranormal/general.c @ 155:adf9f4b26039 trunk

[svn] - user-friendly names (UI side unimplemented still)
author nenolod
date Tue, 31 Oct 2006 12:07:32 -0800
parents fd9c0a5871ac
children 3d98be3d74c2
comparison
equal deleted inserted replaced
154:1378854babe0 155:adf9f4b26039
32 - amt, 0); 32 - amt, 0);
33 } 33 }
34 34
35 struct pn_actuator_desc builtin_general_fade = 35 struct pn_actuator_desc builtin_general_fade =
36 { 36 {
37 "general_fade", "Decreases the color index of each pixel", 37 "general_fade", "Fade-out", "Decreases the color index of each pixel",
38 0, general_fade_opts, 38 0, general_fade_opts,
39 NULL, NULL, general_fade_exec 39 NULL, NULL, general_fade_exec
40 }; 40 };
41 41
42 /* **************** general_blur **************** */ 42 /* **************** general_blur **************** */
88 pn_swap_surfaces (); 88 pn_swap_surfaces ();
89 } 89 }
90 90
91 struct pn_actuator_desc builtin_general_blur = 91 struct pn_actuator_desc builtin_general_blur =
92 { 92 {
93 "general_blur", "A simple 1 pixel radius blur", 93 "general_blur", "Blur", "A simple 1 pixel radius blur",
94 0, NULL, 94 0, NULL,
95 NULL, NULL, general_blur_exec 95 NULL, NULL, general_blur_exec
96 }; 96 };