conf.h   conf.h 
skipping to change at line 252 skipping to change at line 252
int keep_accumulators; /* Free accumulators abov e this limit */ int keep_accumulators; /* Free accumulators abov e this limit */
bool software_trace; bool software_trace;
unsigned int max_axis_rate; unsigned int max_axis_rate;
bool cursor_automation; bool cursor_automation;
int max_font_rows; int max_font_rows;
int max_font_row_width; int max_font_row_width;
bool core_sighandler;
} DFBConfig; } DFBConfig;
extern DFBConfig *dfb_config; extern DFBConfig *dfb_config;
/* /*
* Allocate Config struct, fill with defaults and parse command line option s * Allocate Config struct, fill with defaults and parse command line option s
* for overrides. Options identified as DirectFB options are stripped out * for overrides. Options identified as DirectFB options are stripped out
* of the array. * of the array.
*/ */
DFBResult dfb_config_init( int *argc, char *(*argv[]) ); DFBResult dfb_config_init( int *argc, char *(*argv[]) );
 End of changes. 1 change blocks. 
0 lines changed or deleted 2 lines changed or added


 directfb.h   directfb.h 
skipping to change at line 1019 skipping to change at line 1019
DFFA_NONE = 0x00000000, /* none of these flags */ DFFA_NONE = 0x00000000, /* none of these flags */
DFFA_NOKERNING = 0x00000001, /* don't use kerning */ DFFA_NOKERNING = 0x00000001, /* don't use kerning */
DFFA_NOHINTING = 0x00000002, /* don't use hinting */ DFFA_NOHINTING = 0x00000002, /* don't use hinting */
DFFA_MONOCHROME = 0x00000004, /* don't use anti-aliasing */ DFFA_MONOCHROME = 0x00000004, /* don't use anti-aliasing */
DFFA_NOCHARMAP = 0x00000008, /* no char map, glyph indices are DFFA_NOCHARMAP = 0x00000008, /* no char map, glyph indices are
specified directly */ specified directly */
DFFA_FIXEDCLIP = 0x00000010, /* width fixed advance, clip to it */ DFFA_FIXEDCLIP = 0x00000010, /* width fixed advance, clip to it */
DFFA_NOBITMAP = 0x00000020, /* ignore bitmap strikes; for DFFA_NOBITMAP = 0x00000020, /* ignore bitmap strikes; for
bitmap-only fonts this flag is bitmap-only fonts this flag is
ignored */ ignored */
DFFA_OUTLINED = 0x00000040 DFFA_OUTLINED = 0x00000040,
DFFA_AUTOHINTING = 0x00000080, /* prefer auto-hinter over the font
's
native hinter */
DFFA_SOFTHINTING = 0x00000100 /* use a lighter hinting algorithm
that produces glyphs that are mo
re
fuzzy but better resemble the
original shape */
} DFBFontAttributes; } DFBFontAttributes;
/* /*
* Flags defining which fields of a DFBFontDescription are valid. * Flags defining which fields of a DFBFontDescription are valid.
*/ */
typedef enum { typedef enum {
DFDESC_ATTRIBUTES = 0x00000001, /* attributes field is valid * / DFDESC_ATTRIBUTES = 0x00000001, /* attributes field is valid * /
DFDESC_HEIGHT = 0x00000002, /* height is specified */ DFDESC_HEIGHT = 0x00000002, /* height is specified */
DFDESC_WIDTH = 0x00000004, /* width is specified */ DFDESC_WIDTH = 0x00000004, /* width is specified */
DFDESC_INDEX = 0x00000008, /* index is specified */ DFDESC_INDEX = 0x00000008, /* index is specified */
 End of changes. 1 change blocks. 
1 lines changed or deleted 9 lines changed or added


 directfb_version.h   directfb_version.h 
skipping to change at line 34 skipping to change at line 34
License along with this library; if not, write to the License along with this library; if not, write to the
Free Software Foundation, Inc., 59 Temple Place - Suite 330, Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA. Boston, MA 02111-1307, USA.
*/ */
#ifndef __DIRECTFB_VERSION_H__ #ifndef __DIRECTFB_VERSION_H__
#define __DIRECTFB_VERSION_H__ #define __DIRECTFB_VERSION_H__
#define DIRECTFB_MAJOR_VERSION (1) #define DIRECTFB_MAJOR_VERSION (1)
#define DIRECTFB_MINOR_VERSION (4) #define DIRECTFB_MINOR_VERSION (4)
#define DIRECTFB_MICRO_VERSION (11) #define DIRECTFB_MICRO_VERSION (12)
#define DIRECTFB_BINARY_AGE (6) #define DIRECTFB_BINARY_AGE (7)
#define DIRECTFB_INTERFACE_AGE (6) #define DIRECTFB_INTERFACE_AGE (7)
#endif /* __DIRECTFB_VERSION_H__ */ #endif /* __DIRECTFB_VERSION_H__ */
 End of changes. 1 change blocks. 
3 lines changed or deleted 3 lines changed or added

This html diff was produced by rfcdiff 1.41. The latest version is available from http://tools.ietf.org/tools/rfcdiff/