Revert "st/egl: add premultiplied alpha support to wayland"
authorChia-I Wu <olv@lunarg.com>
Thu, 8 Sep 2011 08:05:22 +0000 (16:05 +0800)
committerChia-I Wu <olv@lunarg.com>
Thu, 8 Sep 2011 08:05:22 +0000 (16:05 +0800)
This reverts commit 23aa978a9d76a48f4b93e9a8911ec50c0e5d94ab.

src/gallium/state_trackers/egl/wayland/native_drm.c
src/gallium/state_trackers/egl/wayland/native_shm.c
src/gallium/state_trackers/egl/wayland/native_wayland.c
src/gallium/state_trackers/egl/wayland/native_wayland.h

index e177e7cd6c9ae5e8510b6453950c758472b490b0..facab3218fb3ea11f438d322041340b1d798b1c8 100644 (file)
@@ -114,8 +114,8 @@ wayland_create_drm_buffer(struct wayland_display *display,
 
    switch (surface->color_format) {
    case PIPE_FORMAT_B8G8R8A8_UNORM:
-      format = (surface->premultiplied_alpha) ?
-         WL_DRM_FORMAT_PREMULTIPLIED_ARGB32 : WL_DRM_FORMAT_ARGB32;
+      /* assume premultiplied */
+      format = WL_DRM_FORMAT_PREMULTIPLIED_ARGB32;
       break;
    case PIPE_FORMAT_B8G8R8X8_UNORM:
       format = WL_DRM_FORMAT_XRGB32;
@@ -255,10 +255,6 @@ wayland_drm_display_init_screen(struct native_display *ndpy)
    if (!wayland_drm_display_add_configs(drmdpy))
       return FALSE;
 
-   /* check that premultiplied alpha is supported for all formats with alpha */
-   if (!drmdpy->argb32 || drmdpy->argb32_pre)
-      drmdpy->base.param_premultiplied_alpha = TRUE;
-
    drmdpy->base.base.screen =
       drmdpy->event_handler->new_drm_screen(&drmdpy->base.base,
                                             NULL, drmdpy->fd);
index e2d24379342b782a5839adc363138b7d957b70e2..5882e74c65310188dcb1b939d6599bf413a91b4e 100644 (file)
@@ -95,8 +95,7 @@ wayland_create_shm_buffer(struct wayland_display *display,
 
    switch (surface->color_format) {
    case PIPE_FORMAT_B8G8R8A8_UNORM:
-      format = (surface->premultiplied_alpha) ?
-         WL_SHM_FORMAT_PREMULTIPLIED_ARGB32 : WL_SHM_FORMAT_ARGB32;
+      format = WL_SHM_FORMAT_PREMULTIPLIED_ARGB32;
       break;
    case PIPE_FORMAT_B8G8R8X8_UNORM:
       format = WL_SHM_FORMAT_XRGB32;
@@ -166,9 +165,6 @@ wayland_shm_display_init_screen(struct native_display *ndpy)
    if (!wayland_shm_display_add_configs(shmdpy))
       return FALSE;
 
-   /* assume all formats are supported */
-   shmdpy->base.param_premultiplied_alpha = TRUE;
-
    winsys = wayland_create_sw_winsys(shmdpy->base.dpy);
    if (!winsys)
       return FALSE;
index b2dab8fae53a810bec3b5d03765d053cb3c9fb89..14cc908cf7a9209b8c9bbeb073b372c48439221f 100644 (file)
@@ -60,13 +60,9 @@ static int
 wayland_display_get_param(struct native_display *ndpy,
                           enum native_param_type param)
 {
-   struct wayland_display *display = wayland_display(ndpy);
    int val;
 
    switch (param) {
-   case NATIVE_PARAM_PREMULTIPLIED_ALPHA:
-      val = display->param_premultiplied_alpha;
-      break;
    case NATIVE_PARAM_USE_NATIVE_BUFFER:
    case NATIVE_PARAM_PRESERVE_BUFFER:
    case NATIVE_PARAM_MAX_SWAP_INTERVAL:
@@ -287,20 +283,6 @@ wayland_surface_present(struct native_surface *nsurf,
    if (ctrl->preserve || ctrl->swap_interval)
       return FALSE;
 
-   /* force buffers to be re-created if they will be presented differently */
-   if (surface->premultiplied_alpha != ctrl->premultiplied_alpha) {
-      enum wayland_buffer_type buffer;
-
-      for (buffer = 0; buffer < WL_BUFFER_COUNT; ++buffer) {
-         if (surface->buffer[buffer]) {
-            wl_buffer_destroy(surface->buffer[buffer]);
-            surface->buffer[buffer] = NULL;
-         }
-      }
-
-      surface->premultiplied_alpha = ctrl->premultiplied_alpha;
-   }
-
    switch (ctrl->natt) {
    case NATIVE_ATTACHMENT_FRONT_LEFT:
       ret = TRUE;
index 6cf98a8e91c407b444d31e2860b1b77826e7955e..93e670babeb2e9d9e0fbb9d47bcf6f4d90e02adb 100644 (file)
@@ -44,8 +44,6 @@ struct wayland_display {
 
    struct wayland_config *configs;
    int num_configs;
-   /* true if all formats with alpha support premultiplied alpha */
-   boolean param_premultiplied_alpha;
 
    struct wl_buffer *(*create_buffer)(struct wayland_display *display,
                                       struct wayland_surface *surface,
@@ -81,7 +79,6 @@ struct wayland_surface {
    unsigned int attachment_mask;
 
    boolean block_swap_buffers;
-   boolean premultiplied_alpha;
 };
 
 struct wayland_config {