]> git.sesse.net Git - vlc/blobdiff - src/video_output/video_text.h
. rajout de l'option -Winline
[vlc] / src / video_output / video_text.h
index 37d6b4c0c89b4751546fd781f91a1955d0e146c5..a0f7db8890a2bcb7b16f99368389b3ac05fb96ef 100644 (file)
@@ -9,25 +9,24 @@
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation; either version 2 of the License, or
  * (at your option) any later version.
- *
+ * 
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * General Public License for more details.
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
  *
- * You should have received a copy of the GNU General Public
- * License along with this program; if not, write to the
- * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
- * Boston, MA 02111-1307, USA.
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  *****************************************************************************/
 
 /* Text styles - these are primary text styles, used by the vout_Print function.
  * They may be ignored or interpreted by higher level functions */
-#define WIDE_TEXT                       1         /* interspacing is doubled */
-#define ITALIC_TEXT                     2                          /* italic */
-#define OPAQUE_TEXT                     4            /* text with background */
-#define OUTLINED_TEXT                   8           /* border around letters */
-#define VOID_TEXT                      16                   /* no foreground */
+#define WIDE_TEXT                    1<<0         /* interspacing is doubled */
+#define ITALIC_TEXT                  1<<1                          /* italic */
+#define OPAQUE_TEXT                  1<<2            /* text with background */
+#define OUTLINED_TEXT                1<<3           /* border around letters */
+#define VOID_TEXT                    1<<4                   /* no foreground */
 
 
 /*****************************************************************************