Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
nerrons
purr-data
Commits
6b6ca7e4
Commit
6b6ca7e4
authored
Sep 04, 2015
by
Jonathan Wilkes
Browse files
olafmatt clone: add A_CANT to dsp method
parent
2eabfae7
Changes
2
Hide whitespace changes
Inline
Side-by-side
externals/olafmatt/clone/clone.c
View file @
6b6ca7e4
...
...
@@ -769,7 +769,7 @@ void clone_setup(void)
class_addmethod
(
clone_class
,
(
t_method
)
clone_click
,
gensym
(
"click"
),
A_FLOAT
,
A_FLOAT
,
A_FLOAT
,
A_FLOAT
,
A_FLOAT
,
0
);
class_addmethod
(
clone_class
,
(
t_method
)
clone_dsp
,
gensym
(
"dsp"
),
0
);
class_addmethod
(
clone_class
,
(
t_method
)
clone_dsp
,
gensym
(
"dsp"
),
A_CANT
,
0
);
class_addfloat
(
clone_class
,
(
t_method
)
clone_float
);
class_addsymbol
(
clone_class
,
(
t_method
)
clone_symbol
);
class_addlist
(
clone_class
,
(
t_method
)
clone_list
);
...
...
@@ -800,4 +800,4 @@ void clone_setup(void)
class_setwidget
(
clone_sigout_class
,
&
clone_widgetbehavior
);
class_sethelpsymbol
(
clone_class
,
gensym
(
"help-clone.pd"
));
}
\ No newline at end of file
}
externals/olafmatt/clone/clone_signal.c
View file @
6b6ca7e4
...
...
@@ -85,7 +85,7 @@ void clone_sigout_setup(void)
clone_sigout_class
=
class_new
(
gensym
(
"cloneout~"
),
(
t_newmethod
)
clone_sigout_new
,
0
,
sizeof
(
t_clone_sigout
),
0
,
0
);
CLASS_MAINSIGNALIN
(
clone_sigout_class
,
t_clone_sigout
,
x_f
);
class_addmethod
(
clone_sigout_class
,
(
t_method
)
clone_sigout_dsp
,
gensym
(
"dsp"
),
0
);
class_addmethod
(
clone_sigout_class
,
(
t_method
)
clone_sigout_dsp
,
gensym
(
"dsp"
),
A_CANT
,
0
);
}
/* signal inlets */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment