[PD-cvs] pd/src builtins_dsp.c,1.1.2.32,1.1.2.33

Mathieu Bouchard matju at users.sourceforge.net
Fri Oct 5 05:54:47 CEST 2007


Update of /cvsroot/pure-data/pd/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16857

Modified Files:
      Tag: desiredata
	builtins_dsp.c 
Log Message:
added [>=~] [<=~] [==~] [!=~]


Index: builtins_dsp.c
===================================================================
RCS file: /cvsroot/pure-data/pd/src/Attic/builtins_dsp.c,v
retrieving revision 1.1.2.32
retrieving revision 1.1.2.33
diff -C2 -d -r1.1.2.32 -r1.1.2.33
*** builtins_dsp.c	4 Oct 2007 07:09:34 -0000	1.1.2.32
--- builtins_dsp.c	5 Oct 2007 03:54:44 -0000	1.1.2.33
***************
*** 63,66 ****
--- 63,70 ----
  DSPDECL(lt)
  DSPDECL(gt)
+ DSPDECL(le)
+ DSPDECL(ge)
+ DSPDECL(eq)
+ DSPDECL(ne)
  
  #define DSPNEW(NAME,SYM) \
***************
*** 199,202 ****
--- 203,210 ----
  PERFORM(lt  ,a<b)     DSPDSP2(lt)       DSPNEW(lt   ,"<~")
  PERFORM(gt  ,a>b)     DSPDSP2(gt)       DSPNEW(gt   ,">~")
+ PERFORM(le  ,a<=b)    DSPDSP2(le)       DSPNEW(le   ,"<=~")
+ PERFORM(ge  ,a>=b)    DSPDSP2(ge)       DSPNEW(ge   ,">=~")
+ PERFORM(eq  ,a==b)    DSPDSP2(eq)       DSPNEW(eq   ,"==~")
+ PERFORM(ne  ,a!=b)    DSPDSP2(ne)       DSPNEW(ne   ,"!=~")
  
  t_int *over_perform(t_int *w) {
***************
*** 3775,3778 ****
--- 3783,3791 ----
      lt_setup();
      gt_setup();
+     le_setup();
+     ge_setup();
+     eq_setup();
+     ne_setup();
+     //abs_setup();
  
      tab_tilde_setup();





More information about the Pd-cvs mailing list