summaryrefslogtreecommitdiff
path: root/include/freetype/ftcolor.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/freetype/ftcolor.h')
-rw-r--r--include/freetype/ftcolor.h37
1 files changed, 0 insertions, 37 deletions
diff --git a/include/freetype/ftcolor.h b/include/freetype/ftcolor.h
index 93df3a2fd..2780661e9 100644
--- a/include/freetype/ftcolor.h
+++ b/include/freetype/ftcolor.h
@@ -51,43 +51,6 @@ FT_BEGIN_HEADER
/**************************************************************************
*
- * @struct:
- * FT_Color
- *
- * @description:
- * This structure models a BGRA color value of a `CPAL` palette entry.
- *
- * The used color space is sRGB; the colors are not pre-multiplied, and
- * alpha values must be explicitly set.
- *
- * @fields:
- * blue ::
- * Blue value.
- *
- * green ::
- * Green value.
- *
- * red ::
- * Red value.
- *
- * alpha ::
- * Alpha value, giving the red, green, and blue color's opacity.
- *
- * @since:
- * 2.10
- */
- typedef struct FT_Color_
- {
- FT_Byte blue;
- FT_Byte green;
- FT_Byte red;
- FT_Byte alpha;
-
- } FT_Color;
-
-
- /**************************************************************************
- *
* @enum:
* FT_PALETTE_XXX
*