mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-23 20:30:15 +00:00
Make GdkColor specify element sizes to avoid waste on 64-bit platforms.
* gdk/gdkcolor.h: Make GdkColor specify element sizes to avoid waste on 64-bit platforms.
This commit is contained in:
parent
a4b2a6a857
commit
3bc53c742d
@ -1,3 +1,7 @@
|
||||
2000-12-05 Elliot Lee <sopwith@redhat.com>
|
||||
* gdk/gdkcolor.h: Make GdkColor specify element sizes
|
||||
to avoid waste on 64-bit platforms.
|
||||
|
||||
Tue Dec 5 15:49:31 2000 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* INSTALL: Fix link to PNG home, remove reference
|
||||
|
@ -1,3 +1,7 @@
|
||||
2000-12-05 Elliot Lee <sopwith@redhat.com>
|
||||
* gdk/gdkcolor.h: Make GdkColor specify element sizes
|
||||
to avoid waste on 64-bit platforms.
|
||||
|
||||
Tue Dec 5 15:49:31 2000 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* INSTALL: Fix link to PNG home, remove reference
|
||||
|
@ -1,3 +1,7 @@
|
||||
2000-12-05 Elliot Lee <sopwith@redhat.com>
|
||||
* gdk/gdkcolor.h: Make GdkColor specify element sizes
|
||||
to avoid waste on 64-bit platforms.
|
||||
|
||||
Tue Dec 5 15:49:31 2000 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* INSTALL: Fix link to PNG home, remove reference
|
||||
|
@ -1,3 +1,7 @@
|
||||
2000-12-05 Elliot Lee <sopwith@redhat.com>
|
||||
* gdk/gdkcolor.h: Make GdkColor specify element sizes
|
||||
to avoid waste on 64-bit platforms.
|
||||
|
||||
Tue Dec 5 15:49:31 2000 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* INSTALL: Fix link to PNG home, remove reference
|
||||
|
@ -1,3 +1,7 @@
|
||||
2000-12-05 Elliot Lee <sopwith@redhat.com>
|
||||
* gdk/gdkcolor.h: Make GdkColor specify element sizes
|
||||
to avoid waste on 64-bit platforms.
|
||||
|
||||
Tue Dec 5 15:49:31 2000 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* INSTALL: Fix link to PNG home, remove reference
|
||||
|
@ -1,3 +1,7 @@
|
||||
2000-12-05 Elliot Lee <sopwith@redhat.com>
|
||||
* gdk/gdkcolor.h: Make GdkColor specify element sizes
|
||||
to avoid waste on 64-bit platforms.
|
||||
|
||||
Tue Dec 5 15:49:31 2000 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* INSTALL: Fix link to PNG home, remove reference
|
||||
|
@ -1,3 +1,7 @@
|
||||
2000-12-05 Elliot Lee <sopwith@redhat.com>
|
||||
* gdk/gdkcolor.h: Make GdkColor specify element sizes
|
||||
to avoid waste on 64-bit platforms.
|
||||
|
||||
Tue Dec 5 15:49:31 2000 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* INSTALL: Fix link to PNG home, remove reference
|
||||
|
@ -16,10 +16,10 @@ extern "C" {
|
||||
*/
|
||||
struct _GdkColor
|
||||
{
|
||||
gulong pixel;
|
||||
gushort red;
|
||||
gushort green;
|
||||
gushort blue;
|
||||
guint32 pixel;
|
||||
guint16 red;
|
||||
guint16 green;
|
||||
guint16 blue;
|
||||
};
|
||||
|
||||
/* The colormap type.
|
||||
|
Loading…
Reference in New Issue
Block a user