From 293099fceeb7d058fccdd0b839d78a5b9c43761a Mon Sep 17 00:00:00 2001 From: Miguel de Icaza Date: Thu, 20 Feb 2003 04:57:07 +0000 Subject: [PATCH] A simple one svn path=/trunk/gtk-sharp/; revision=11764 --- doc/en/Gdk/ByteOrder.xml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/doc/en/Gdk/ByteOrder.xml b/doc/en/Gdk/ByteOrder.xml index d884e3789..408e3a677 100644 --- a/doc/en/Gdk/ByteOrder.xml +++ b/doc/en/Gdk/ByteOrder.xml @@ -5,10 +5,10 @@ 0.0.0.0 - To be added + Thread safe. - To be added - To be added + A set of values describing the possible byte-orders for storing pixel values in memory. + System.Enum @@ -34,8 +34,8 @@ - To be added - To be added + The values are stored with the least-significant byte first. + For instance, the 32-bit value 0xffeecc would be stored in memory as 0xcc, 0xee, 0xff, 0x00. @@ -46,8 +46,8 @@ - To be added - To be added + The values are stored with the most-significant byte first. + For instance, the 32-bit value 0xffeecc would be stored in memory as 0x00, 0xcc, 0xee, 0xff.