summaryrefslogtreecommitdiff
path: root/third_party/freetype-py/doc/ft_render_modes.rst
diff options
context:
space:
mode:
authorJames Godfrey-Kittle <jamesgk@google.com>2015-04-14 17:30:59 -0700
committerJames Godfrey-Kittle <jamesgk@google.com>2015-04-16 12:16:35 -0700
commit9c7be85eee749f620d722c8e0382bad3ed34c1b8 (patch)
tree7a955704e731626a4353f3285253c92654acdf9f /third_party/freetype-py/doc/ft_render_modes.rst
parentba03b84b90b50afd99f9688059447bc545e5c0e1 (diff)
Remove freetype-py from repo, refer to GitHub.
Diffstat (limited to 'third_party/freetype-py/doc/ft_render_modes.rst')
-rw-r--r--third_party/freetype-py/doc/ft_render_modes.rst45
1 files changed, 0 insertions, 45 deletions
diff --git a/third_party/freetype-py/doc/ft_render_modes.rst b/third_party/freetype-py/doc/ft_render_modes.rst
deleted file mode 100644
index fd9027b..0000000
--- a/third_party/freetype-py/doc/ft_render_modes.rst
+++ /dev/null
@@ -1,45 +0,0 @@
-FT_RENDER_MODES
-===============
-
-An enumeration type that lists the render modes supported by FreeType 2. Each
-mode corresponds to a specific type of scanline conversion performed on the
-outline.
-
-For bitmap fonts and embedded bitmaps the 'bitmap->pixel_mode' field in the
-.. data:: FT_GlyphSlotRec structure gives the format of the returned bitmap.
-
-All modes except FT_RENDER_MODE_MONO use 256 levels of opacity.
-
-
-.. data:: FT_RENDER_MODE_NORMAL
-
- This is the default render mode; it corresponds to 8-bit anti-aliased
- bitmaps.
-
-
-.. data:: FT_RENDER_MODE_LIGHT
-
- This is equivalent to FT_RENDER_MODE_NORMAL. It is only defined as a separate
- value because render modes are also used indirectly to define hinting
- algorithm selectors. See FT_LOAD_TARGET_XXX for details.
-
-
-.. data:: FT_RENDER_MODE_MONO
-
- This mode corresponds to 1-bit bitmaps (with 2 levels of opacity).
-
-
-.. data:: FT_RENDER_MODE_LCD
-
- This mode corresponds to horizontal RGB and BGR sub-pixel displays like LCD
- screens. It produces 8-bit bitmaps that are 3 times the width of the original
- glyph outline in pixels, and which use the FT_PIXEL_MODE_LCD mode.
-
-
-.. data:: FT_RENDER_MODE_LCD_V
-
- This mode corresponds to vertical RGB and BGR sub-pixel displays (like PDA
- screens, rotated LCD displays, etc.). It produces 8-bit bitmaps that are 3
- times the height of the original glyph outline in pixels and use the
- FT_PIXEL_MODE_LCD_V mode.
-