From 3f2f8e46e1cfed6df030a366ba7049645d3ca521 Mon Sep 17 00:00:00 2001 From: the_fiddler Date: Fri, 4 Sep 2009 22:08:10 +0000 Subject: [PATCH] Added missing XML documentation. --- Source/OpenTK/Graphics/ColorFormat.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Source/OpenTK/Graphics/ColorFormat.cs b/Source/OpenTK/Graphics/ColorFormat.cs index 9298b4e4..583109e3 100644 --- a/Source/OpenTK/Graphics/ColorFormat.cs +++ b/Source/OpenTK/Graphics/ColorFormat.cs @@ -185,6 +185,10 @@ namespace OpenTK.Graphics return Red ^ Green ^ Blue ^ Alpha; } + /// + /// Returns a that describes this instance. + /// + /// A that describes this instance. public override string ToString() { return string.Format("{0} ({1})", BitsPerPixel, (IsIndexed ? " indexed" : Red.ToString() + Green.ToString() + Blue.ToString() + Alpha.ToString()));