[clutter/wip/wayland-2: 15/22] Updates in line with latest wayland protocol
- From: Neil Roberts <nroberts src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [clutter/wip/wayland-2: 15/22] Updates in line with latest wayland protocol
- Date: Wed, 29 Feb 2012 17:57:49 +0000 (UTC)
commit c4ca6bd1dbd710f6bace80012944e9b019a3ba45
Author: Robert Bragg <robert linux intel com>
Date: Thu Jan 12 20:36:16 2012 +0000
Updates in line with latest wayland protocol
The shm buffer format enum values were renamed and the explicitly
premultiplied format was dropped since it's now assumed if the buffer
has an alpha component then it's premultiplied.
Reviewed-by: Neil Roberts <neil linux intel com>
clutter/wayland/clutter-wayland-surface.c | 10 ++++------
1 files changed, 4 insertions(+), 6 deletions(-)
---
diff --git a/clutter/wayland/clutter-wayland-surface.c b/clutter/wayland/clutter-wayland-surface.c
index 979a8bb..4cec746 100644
--- a/clutter/wayland/clutter-wayland-surface.c
+++ b/clutter/wayland/clutter-wayland-surface.c
@@ -594,19 +594,17 @@ clutter_wayland_surface_damage_buffer (ClutterWaylandSurface *self,
switch (wl_shm_buffer_get_format (buffer))
{
#if G_BYTE_ORDER == G_BIG_ENDIAN
- case WL_SHM_FORMAT_PREMULTIPLIED_ARGB32:
+ case WL_SHM_FORMAT_ARGB8888:
format = COGL_PIXEL_FORMAT_ARGB_8888_PRE;
break;
- case WL_SHM_FORMAT_ARGB32:
- case WL_SHM_FORMAT_XRGB32:
+ case WL_SHM_FORMAT_XRGB8888:
format = COGL_PIXEL_FORMAT_ARGB_8888;
break;
#elif G_BYTE_ORDER == G_LITTLE_ENDIAN
- case WL_SHM_FORMAT_PREMULTIPLIED_ARGB32:
+ case WL_SHM_FORMAT_ARGB8888:
format = COGL_PIXEL_FORMAT_BGRA_8888_PRE;
break;
- case WL_SHM_FORMAT_ARGB32:
- case WL_SHM_FORMAT_XRGB32:
+ case WL_SHM_FORMAT_XRGB8888:
format = COGL_PIXEL_FORMAT_BGRA_8888;
break;
#endif
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]