mirror of
https://github.com/GRRLIB/GRRLIB.git
synced 2024-11-21 22:42:20 +00:00
[BUG] Fixed issue #2
This commit is contained in:
parent
e0433ecf89
commit
70ece3cdc5
2 changed files with 6 additions and 6 deletions
|
@ -124,8 +124,8 @@ typedef enum GRRLIB_blendMode {
|
|||
* Structure to hold the current drawing settings.
|
||||
*/
|
||||
typedef struct GRRLIB_drawSettings {
|
||||
bool antialias; /**< true => AntiAlias enabled. */
|
||||
int blend; /**< Blending Mode. */
|
||||
bool antialias; /**< AntiAlias is enabled when set to true. */
|
||||
int blend; /**< Blending Mode. */
|
||||
} GRRLIB_drawSettings;
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
|
|
|
@ -584,8 +584,8 @@ WARN_LOGFILE =
|
|||
# directories like "/usr/src/myproject". Separate the files or directories
|
||||
# with spaces.
|
||||
|
||||
INPUT = .\GRRLIB\GRRLIB \
|
||||
.\GRRLIB\GRRLIB\grrlib
|
||||
INPUT = ./GRRLIB/GRRLIB \
|
||||
./GRRLIB/GRRLIB/grrlib
|
||||
|
||||
# This tag can be used to specify the character encoding of the source files
|
||||
# that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is
|
||||
|
@ -1396,7 +1396,7 @@ HIDE_UNDOC_RELATIONS = YES
|
|||
# toolkit from AT&T and Lucent Bell Labs. The other options in this section
|
||||
# have no effect if this option is set to NO (the default)
|
||||
|
||||
HAVE_DOT = YES
|
||||
HAVE_DOT = NO
|
||||
|
||||
# By default doxygen will write a font called FreeSans.ttf to the output
|
||||
# directory and reference it in all dot files that doxygen generates. This
|
||||
|
@ -1502,7 +1502,7 @@ DOT_IMAGE_FORMAT = png
|
|||
# The tag DOT_PATH can be used to specify the path where the dot tool can be
|
||||
# found. If left blank, it is assumed the dot tool can be found in the path.
|
||||
|
||||
DOT_PATH = D:\Programmes\Graphviz\bin
|
||||
DOT_PATH =
|
||||
|
||||
# The DOTFILE_DIRS tag can be used to specify one or more directories that
|
||||
# contain dot files that are included in the documentation (see the
|
||||
|
|
Loading…
Reference in a new issue