summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWerner Lemberg <wl@gnu.org>2009-03-30 12:58:41 +0200
committerWerner Lemberg <wl@gnu.org>2009-03-30 12:58:41 +0200
commit3ba8301b218dbb0b3007ceea46670f14f8f26746 (patch)
tree2f6ec7ad32aad19752d8fa8121fcd37ad030b31b
parentb3e6df69e6d112af739f3ad08cb7cafce32683b2 (diff)
downloadfreetype2-3ba8301b218dbb0b3007ceea46670f14f8f26746.tar.gz
Callbacks for b/w rasterizer are not implemented currently.
-rw-r--r--include/freetype/ftimage.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/freetype/ftimage.h b/include/freetype/ftimage.h
index ccc2f7135..61882e098 100644
--- a/include/freetype/ftimage.h
+++ b/include/freetype/ftimage.h
@@ -5,7 +5,7 @@
/* FreeType glyph image formats and default raster interface */
/* (specification). */
/* */
-/* Copyright 1996-2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 by */
+/* Copyright 1996-2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 by */
/* David Turner, Robert Wilhelm, and Werner Lemberg. */
/* */
/* This file is part of the FreeType project, and may only be used, */
@@ -1011,7 +1011,7 @@ FT_BEGIN_HEADER
/* */
/* gray_spans :: The gray span drawing callback. */
/* */
- /* black_spans :: The black span drawing callback. */
+ /* black_spans :: The black span drawing callback. UNIMPLEMENTED! */
/* */
/* bit_test :: The bit test callback. UNIMPLEMENTED! */
/* */
@@ -1048,7 +1048,7 @@ FT_BEGIN_HEADER
const void* source;
int flags;
FT_SpanFunc gray_spans;
- FT_SpanFunc black_spans;
+ FT_SpanFunc black_spans; /* doesn't work! */
FT_Raster_BitTest_Func bit_test; /* doesn't work! */
FT_Raster_BitSet_Func bit_set; /* doesn't work! */
void* user;