X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2Fvisualization%2Fgalaktos%2Fparam_types.h;h=c92cd4f6bcbc6cd8391e3b65977b089aba6fca60;hb=6ee1e193fd896ab9a4729fde14f009d9ce629815;hp=aae00cff406a0d04dccfd8a925ff5da96fa89458;hpb=3305b049e7f587b23359a1c9047fb5763d19c1dc;p=vlc diff --git a/modules/visualization/galaktos/param_types.h b/modules/visualization/galaktos/param_types.h index aae00cff40..c92cd4f6bc 100644 --- a/modules/visualization/galaktos/param_types.h +++ b/modules/visualization/galaktos/param_types.h @@ -21,14 +21,14 @@ 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 */