summaryrefslogtreecommitdiff
path: root/core/src/fxge/Microsoft SDK/include/GdiPlusColorMatrix.h
diff options
context:
space:
mode:
authorJohn Abd-El-Malek <jabdelmalek@google.com>2014-05-23 17:49:55 -0700
committerJohn Abd-El-Malek <jabdelmalek@google.com>2014-05-23 17:56:14 -0700
commit7c83a7cdce99a03841c3b2a66dcabeed68baa354 (patch)
tree59e9590539327d11c17b2b10bd4126a1936447b0 /core/src/fxge/Microsoft SDK/include/GdiPlusColorMatrix.h
parent5b51e49beb646a378f5cbaf012ff63c982345e66 (diff)
downloadpdfium-7c83a7cdce99a03841c3b2a66dcabeed68baa354.tar.xz
remove Microsoft SDK
Original patch by Lucas Nihlen <luken@chromium.org>
Diffstat (limited to 'core/src/fxge/Microsoft SDK/include/GdiPlusColorMatrix.h')
-rw-r--r--core/src/fxge/Microsoft SDK/include/GdiPlusColorMatrix.h63
1 files changed, 0 insertions, 63 deletions
diff --git a/core/src/fxge/Microsoft SDK/include/GdiPlusColorMatrix.h b/core/src/fxge/Microsoft SDK/include/GdiPlusColorMatrix.h
deleted file mode 100644
index ec4d14b191..0000000000
--- a/core/src/fxge/Microsoft SDK/include/GdiPlusColorMatrix.h
+++ /dev/null
@@ -1,63 +0,0 @@
-/**************************************************************************\
-*
-* Copyright (c) 1998-2000, Microsoft Corp. All Rights Reserved.
-*
-* Module Name:
-*
-* GdiplusColorMatrix.h
-*
-* Abstract:
-*
-* Class for color adjustment object passed to Graphics.DrawImage
-*
-\**************************************************************************/
-
-#ifndef _GDIPLUSCOLORMATRIX_H
-#define _GDIPLUSCOLORMATRIX_H
-
-//----------------------------------------------------------------------------
-// Color matrix
-//----------------------------------------------------------------------------
-
-struct ColorMatrix
-{
- REAL m[5][5];
-};
-
-//----------------------------------------------------------------------------
-// Color Matrix flags
-//----------------------------------------------------------------------------
-
-enum ColorMatrixFlags
-{
- ColorMatrixFlagsDefault = 0,
- ColorMatrixFlagsSkipGrays = 1,
- ColorMatrixFlagsAltGray = 2
-};
-
-//----------------------------------------------------------------------------
-// Color Adjust Type
-//----------------------------------------------------------------------------
-
-enum ColorAdjustType
-{
- ColorAdjustTypeDefault,
- ColorAdjustTypeBitmap,
- ColorAdjustTypeBrush,
- ColorAdjustTypePen,
- ColorAdjustTypeText,
- ColorAdjustTypeCount, // must be immediately after all the individual ones
- ColorAdjustTypeAny // internal use: for querying if any type has recoloring
-};
-
-//----------------------------------------------------------------------------
-// Color Map
-//----------------------------------------------------------------------------
-
-struct ColorMap
-{
- Color oldColor;
- Color newColor;
-};
-
-#endif