Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ColorMatrixFlag.cs « System.Drawing.Imaging « System.Drawing « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f244e02447f12a6531eb95b361abbad06ad9e453 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//
// System.Drawing.Imaging.ColorMatrixFlag.cs
//
// (C) 2002 Ximian, Inc.  http://www.ximian.com
// Author: Dennis Hayes (dennish@raytek.com)
//
using System;
namespace System.Drawing.Imaging 
{
	public enum  ColorMatrixFlag{
		AltGrays = 2,
		Default = 0,
		SkipGrays = 1
	}
}