aboutsummaryrefslogtreecommitdiff
path: root/src/0x3e0x7e.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/0x3e0x7e.c
parent91156cb20be72c7bc1e899613c0792281c9cda87 (diff)
made perform-routines "static"
svn path=/trunk/externals/zexy/; revision=4489
Diffstat (limited to 'src/0x3e0x7e.c')
-rw-r--r--src/0x3e0x7e.c17
1 files changed, 6 insertions, 11 deletions
diff --git a/src/0x3e0x7e.c b/src/0x3e0x7e.c
index 081620a..6a20686 100644
--- a/src/0x3e0x7e.c
+++ b/src/0x3e0x7e.c
@@ -62,7 +62,7 @@ static void *gt_tilde_new(t_symbol *s, int argc, t_atom *argv)
}
}
-t_int *gt_tilde_perform(t_int *w)
+static t_int *gt_tilde_perform(t_int *w)
{
t_float *in1 = (t_float *)(w[1]);
t_float *in2 = (t_float *)(w[2]);
@@ -72,7 +72,7 @@ t_int *gt_tilde_perform(t_int *w)
return (w+5);
}
-t_int *gt_tilde_perf8(t_int *w)
+static t_int *gt_tilde_perf8(t_int *w)
{
t_float *in1 = (t_float *)(w[1]);
t_float *in2 = (t_float *)(w[2]);
@@ -92,7 +92,7 @@ t_int *gt_tilde_perf8(t_int *w)
return (w+5);
}
-t_int *scalargt_tilde_perform(t_int *w)
+static t_int *scalargt_tilde_perform(t_int *w)
{
t_float *in = (t_float *)(w[1]);
t_float f = *(t_float *)(w[2]);
@@ -102,7 +102,7 @@ t_int *scalargt_tilde_perform(t_int *w)
return (w+5);
}
-t_int *scalargt_tilde_perf8(t_int *w)
+static t_int *scalargt_tilde_perf8(t_int *w)
{
t_float *in = (t_float *)(w[1]);
t_float g = *(t_float *)(w[2]);
@@ -119,7 +119,7 @@ t_int *scalargt_tilde_perf8(t_int *w)
return (w+5);
}
#ifdef __SSE__
-t_int *gt_tilde_performSSE(t_int *w)
+static t_int *gt_tilde_performSSE(t_int *w)
{
__m128 *in1 = (__m128 *)(w[1]);
__m128 *in2 = (__m128 *)(w[2]);
@@ -148,7 +148,7 @@ t_int *gt_tilde_performSSE(t_int *w)
return (w+5);
}
-t_int *scalargt_tilde_performSSE(t_int *w)
+static t_int *scalargt_tilde_performSSE(t_int *w)
{
__m128 *in = (__m128 *)(w[1]);
__m128 *out = (__m128 *)(w[3]);
@@ -243,11 +243,6 @@ static void gt_tilde_setup(void)
/* ---------------------- global setup ------------------------- */
-void z_gt__setup(void)
-{
- gt_tilde_setup();
-}
-
void z_0x3e0x7e_setup(void)
{
gt_tilde_setup();