]> git.sesse.net Git - vlc/blobdiff - modules/visualization/galaktos/param_types.h
Removes trailing spaces. Removes tabs.
[vlc] / modules / visualization / galaktos / param_types.h
index aae00cff406a0d04dccfd8a925ff5da96fa89458..c92cd4f6bcbc6cd8391e3b65977b089aba6fca60 100644 (file)
 typedef union VALUE_T {
   int bool_val;
   int int_val;
-  double double_val;   
+  double double_val;    
 } value_t;
 
 /* Parameter Type */
 typedef struct PARAM_T {
   char name[MAX_TOKEN_SIZE]; /* name of the parameter, not necessary but useful neverthless */
-  short int type; /* parameter number type (int, bool, or double) */   
-  short int flags; /* read, write, user defined, etc */        
+  short int type; /* parameter number type (int, bool, or double) */    
+  short int flags; /* read, write, user defined, etc */    
   short int matrix_flag; /* for optimization purposes */
   void * engine_val; /* pointer to the engine variable */
   void * matrix; /* per pixel / per point matrix for this variable */