disable debug print

This commit is contained in:
Vincent Wei
2019-03-29 18:31:23 +08:00
parent 0855e8b972
commit cf063aad32
3 changed files with 2 additions and 5 deletions

View File

@@ -12982,8 +12982,6 @@ typedef BOOL (*CB_GLYPH_LAID_OUT) (GHANDLE ctxt,
* it is less than 0. This parameter is only effective when the
* line extent mode of the layout object is variable.
* \param last_line Whether to lay out all left characters in one line.
* \param line_size The size of the line will be returned through this
* buffer if it is not NULL.
* \param cb_laid_out The callback for one laid out glyph.
* \param ctxt The context will be passed to \a cb_laid_out.
* This parameter is only effective when cb_laid_out is not NULL.

View File

@@ -40,8 +40,6 @@
#ifndef GUI_FREETYP2_H
#define GUI_FREETYP2_H
#define TTF_DBG
#ifndef TTF_DBG
#define DP(x)
#else

View File

@@ -48,7 +48,8 @@
#include "devfont.h"
#define BIDI_DEBUG
#undef BIDI_DEBUG
#include "bidi.h"
#define BIDI_MAX(a,b) ((a) > (b) ? (a) : (b))