aboutsummaryrefslogtreecommitdiff
path: root/src/0x3c0x7e.c
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2006-01-25 15:09:42 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2006-01-25 15:09:42 +0000
commitfc9fb13209893eb4e22dc7f65d7983da378da7c8 (patch)
tree23c1775efd1940908af598923ed6f91aec8944a7 /src/0x3c0x7e.c
parent91156cb20be72c7bc1e899613c0792281c9cda87 (diff)
made perform-routines "static"
svn path=/trunk/externals/zexy/; revision=4489
Diffstat (limited to 'src/0x3c0x7e.c')
-rw-r--r--src/0x3c0x7e.c17
1 files changed, 6 insertions, 11 deletions
diff --git a/src/0x3c0x7e.c b/src/0x3c0x7e.c
index 80639db..bd0373e 100644
--- a/src/0x3c0x7e.c
+++ b/src/0x3c0x7e.c
@@ -63,7 +63,7 @@ static void *lt_tilde_new(t_symbol *s, int argc, t_atom *argv)
}
}
-t_int *lt_tilde_perform(t_int *w)
+static t_int *lt_tilde_perform(t_int *w)
{
t_float *in1 = (t_float *)(w[1]);
t_float *in2 = (t_float *)(w[2]);
@@ -73,7 +73,7 @@ t_int *lt_tilde_perform(t_int *w)
return (w+5);
}
-t_int *lt_tilde_perf8(t_int *w)
+static t_int *lt_tilde_perf8(t_int *w)
{
t_float *in1 = (t_float *)(w[1]);
t_float *in2 = (t_float *)(w[2]);
@@ -93,7 +93,7 @@ t_int *lt_tilde_perf8(t_int *w)
return (w+5);
}
-t_int *scalarlt_tilde_perform(t_int *w)
+static t_int *scalarlt_tilde_perform(t_int *w)
{
t_float *in = (t_float *)(w[1]);
t_float f = *(t_float *)(w[2]);
@@ -103,7 +103,7 @@ t_int *scalarlt_tilde_perform(t_int *w)
return (w+5);
}
-t_int *scalarlt_tilde_perf8(t_int *w)
+static t_int *scalarlt_tilde_perf8(t_int *w)
{
t_float *in = (t_float *)(w[1]);
t_float g = *(t_float *)(w[2]);
@@ -120,7 +120,7 @@ t_int *scalarlt_tilde_perf8(t_int *w)
return (w+5);
}
#ifdef __SSE__
-t_int *lt_tilde_performSSE(t_int *w)
+static t_int *lt_tilde_performSSE(t_int *w)
{
__m128 *in1 = (__m128 *)(w[1]);
__m128 *in2 = (__m128 *)(w[2]);
@@ -149,7 +149,7 @@ t_int *lt_tilde_performSSE(t_int *w)
return (w+5);
}
-t_int *scalarlt_tilde_performSSE(t_int *w)
+static t_int *scalarlt_tilde_performSSE(t_int *w)
{
__m128 *in = (__m128 *)(w[1]);
__m128 *out = (__m128 *)(w[3]);
@@ -246,11 +246,6 @@ static void lt_tilde_setup(void)
/* ---------------------- global setup ------------------------- */
-void z_lt__setup(void)
-{
- lt_tilde_setup();
-}
-
void z_0x3c0x7e_setup(void)
{
lt_tilde_setup();