aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKristian Høgsberg <krh@bitplanet.net>2011-08-30 21:26:19 -0400
committerKristian Høgsberg <krh@bitplanet.net>2011-08-31 18:34:21 -0400
commitc640571c00b0c1ffafb05b1ad5cd02cd511cb06a (patch)
treea18333b8cdb062e68f373f0ffd9e07e4c493deef /src
parentUpdate TODO (diff)
downloadwayland-c640571c00b0c1ffafb05b1ad5cd02cd511cb06a.tar
wayland-c640571c00b0c1ffafb05b1ad5cd02cd511cb06a.tar.gz
wayland-c640571c00b0c1ffafb05b1ad5cd02cd511cb06a.tar.bz2
wayland-c640571c00b0c1ffafb05b1ad5cd02cd511cb06a.tar.lz
wayland-c640571c00b0c1ffafb05b1ad5cd02cd511cb06a.tar.xz
wayland-c640571c00b0c1ffafb05b1ad5cd02cd511cb06a.tar.zst
wayland-c640571c00b0c1ffafb05b1ad5cd02cd511cb06a.zip
Remove the wl_visual interface
The visual interface was meant to be a generic mechanism for specifying the content of a buffer. It goes back to before we had the buffer factory interfaces (like wl_drm and wl_shm) and we wanted to keep it open-ended enough that yuv, png or even svg buffer or so would be possible. Now that we have the buffer abstraction, we can add different buffer types by introducing new interfaces that create buffers. It only makes sense to leave it to those interfaces to specify the contents of the buffers. For wl_shm, this means that we now just specify the pixel format using an enum. For EGL buffers, the exact pixel formats are controlled by the implementation (part of wl_drm and similar), and from the client point of view, everything is controlled using EGLConfigs.
Diffstat (limited to 'src')
-rw-r--r--src/wayland-egl.h6
-rw-r--r--src/wayland-server.c41
-rw-r--r--src/wayland-server.h15
-rw-r--r--src/wayland-shm.c43
4 files changed, 37 insertions, 68 deletions
diff --git a/src/wayland-egl.h b/src/wayland-egl.h
index 85fe73d..56811a7 100644
--- a/src/wayland-egl.h
+++ b/src/wayland-egl.h
@@ -37,8 +37,7 @@ struct wl_egl_pixmap;
struct wl_egl_window *
wl_egl_window_create(struct wl_surface *surface,
- int width, int height,
- struct wl_visual *visual);
+ int width, int height);
void
wl_egl_window_destroy(struct wl_egl_window *egl_window);
@@ -53,8 +52,7 @@ wl_egl_window_get_attached_size(struct wl_egl_window *egl_window,
int *width, int *height);
struct wl_egl_pixmap *
-wl_egl_pixmap_create(int width, int height,
- struct wl_visual *visual, uint32_t flags);
+wl_egl_pixmap_create(int width, int height, uint32_t flags);
void
wl_egl_pixmap_destroy(struct wl_egl_pixmap *egl_pixmap);
diff --git a/src/wayland-server.c b/src/wayland-server.c
index 7c8c386..fbf413b 100644
--- a/src/wayland-server.c
+++ b/src/wayland-server.c
@@ -858,28 +858,6 @@ compositor_bind(struct wl_client *client,
compositor->interface, id, compositor);
if (resource == NULL)
return;
-
- wl_resource_post_event(resource,
- WL_COMPOSITOR_TOKEN_VISUAL,
- compositor->argb_visual.name,
- WL_COMPOSITOR_VISUAL_ARGB32);
-
- wl_resource_post_event(resource,
- WL_COMPOSITOR_TOKEN_VISUAL,
- compositor->premultiplied_argb_visual.name,
- WL_COMPOSITOR_VISUAL_PREMULTIPLIED_ARGB32);
-
- wl_resource_post_event(resource,
- WL_COMPOSITOR_TOKEN_VISUAL,
- compositor->rgb_visual.name,
- WL_COMPOSITOR_VISUAL_XRGB32);
-}
-
-static void
-bind_visual(struct wl_client *client,
- void *data, uint32_t version, uint32_t id)
-{
- wl_client_add_object(client, &wl_visual_interface, NULL, id, data);
}
WL_EXPORT int
@@ -895,24 +873,5 @@ wl_compositor_init(struct wl_compositor *compositor,
if (!global)
return -1;
- global = wl_display_add_global(display, &wl_visual_interface,
- &compositor->argb_visual, bind_visual);
- if (!global)
- return -1;
- compositor->argb_visual.name = global->name;
-
- global = wl_display_add_global(display, &wl_visual_interface,
- &compositor->premultiplied_argb_visual,
- bind_visual);
- if (!global)
- return -1;
- compositor->premultiplied_argb_visual.name = global->name;
-
- global = wl_display_add_global(display, &wl_visual_interface,
- &compositor->rgb_visual, bind_visual);
- if (!global)
- return -1;
- compositor->rgb_visual.name = global->name;
-
return 0;
}
diff --git a/src/wayland-server.h b/src/wayland-server.h
index 71bb5bf..95b44c1 100644
--- a/src/wayland-server.h
+++ b/src/wayland-server.h
@@ -117,11 +117,6 @@ struct wl_resource {
void *data;
};
-struct wl_visual {
- struct wl_object object;
- uint32_t name;
-};
-
struct wl_shm_callbacks {
void (*buffer_created)(struct wl_buffer *buffer);
@@ -134,14 +129,10 @@ struct wl_shm_callbacks {
struct wl_compositor {
const struct wl_compositor_interface *interface;
- struct wl_visual argb_visual;
- struct wl_visual premultiplied_argb_visual;
- struct wl_visual rgb_visual;
};
struct wl_buffer {
struct wl_resource resource;
- struct wl_visual *visual;
int32_t width, height;
uint32_t busy_count;
void *user_data;
@@ -285,10 +276,12 @@ wl_shm_buffer_get_data(struct wl_buffer *buffer);
int32_t
wl_shm_buffer_get_stride(struct wl_buffer *buffer);
+uint32_t
+wl_shm_buffer_get_format(struct wl_buffer *buffer);
+
struct wl_buffer *
wl_shm_buffer_create(struct wl_shm *shm, int width, int height,
- int stride, struct wl_visual *visual,
- void *data);
+ int stride, uint32_t visual, void *data);
int
wl_buffer_is_shm(struct wl_buffer *buffer);
diff --git a/src/wayland-shm.c b/src/wayland-shm.c
index c73c786..b2a873d 100644
--- a/src/wayland-shm.c
+++ b/src/wayland-shm.c
@@ -41,6 +41,7 @@ struct wl_shm_buffer {
struct wl_buffer buffer;
struct wl_shm *shm;
int32_t stride;
+ uint32_t format;
void *data;
};
@@ -81,8 +82,7 @@ const static struct wl_buffer_interface shm_buffer_interface = {
static struct wl_shm_buffer *
wl_shm_buffer_init(struct wl_shm *shm, struct wl_client *client, uint32_t id,
int32_t width, int32_t height,
- int32_t stride, struct wl_visual *visual,
- void *data)
+ int32_t stride, uint32_t format, void *data)
{
struct wl_shm_buffer *buffer;
@@ -92,7 +92,7 @@ wl_shm_buffer_init(struct wl_shm *shm, struct wl_client *client, uint32_t id,
buffer->buffer.width = width;
buffer->buffer.height = height;
- buffer->buffer.visual = visual;
+ buffer->format = format;
buffer->stride = stride;
buffer->data = data;
@@ -115,17 +115,22 @@ wl_shm_buffer_init(struct wl_shm *shm, struct wl_client *client, uint32_t id,
static void
shm_create_buffer(struct wl_client *client, struct wl_resource *resource,
uint32_t id, int fd, int32_t width, int32_t height,
- uint32_t stride, struct wl_resource *visual_resource)
+ uint32_t stride, uint32_t format)
{
struct wl_shm *shm = resource->data;
struct wl_shm_buffer *buffer;
- struct wl_visual *visual = visual_resource->data;
void *data;
- if (!visual || visual_resource->object.interface != &wl_visual_interface) {
+
+ switch (format) {
+ case WL_SHM_FORMAT_ARGB32:
+ case WL_SHM_FORMAT_PREMULTIPLIED_ARGB32:
+ case WL_SHM_FORMAT_XRGB32:
+ break;
+ default:
wl_client_post_error(client, &resource->object,
- WL_SHM_ERROR_INVALID_VISUAL,
- "invalid visual");
+ WL_SHM_ERROR_INVALID_FORMAT,
+ "invalid format");
close(fd);
return;
}
@@ -151,8 +156,7 @@ shm_create_buffer(struct wl_client *client, struct wl_resource *resource,
}
buffer = wl_shm_buffer_init(shm, client, id,
- width, height, stride, visual,
- data);
+ width, height, stride, format, data);
if (buffer == NULL) {
munmap(data, stride * height);
wl_client_post_no_memory(client);
@@ -170,8 +174,15 @@ static void
bind_shm(struct wl_client *client,
void *data, uint32_t version, uint32_t id)
{
- wl_client_add_object(client,
- &wl_shm_interface, &shm_interface, id, data);
+ struct wl_resource *resource;
+
+ resource = wl_client_add_object(client, &wl_shm_interface,
+ &shm_interface, id, data);
+
+ wl_resource_post_event(resource, WL_SHM_FORMAT, WL_SHM_FORMAT_ARGB32);
+ wl_resource_post_event(resource, WL_SHM_FORMAT,
+ WL_SHM_FORMAT_PREMULTIPLIED_ARGB32);
+ wl_resource_post_event(resource, WL_SHM_FORMAT, WL_SHM_FORMAT_XRGB32);
}
WL_EXPORT struct wl_shm *
@@ -232,3 +243,11 @@ wl_shm_buffer_get_data(struct wl_buffer *buffer_base)
return buffer->data;
}
+
+WL_EXPORT uint32_t
+wl_shm_buffer_get_format(struct wl_buffer *buffer_base)
+{
+ struct wl_shm_buffer *buffer = (struct wl_shm_buffer *) buffer_base;
+
+ return buffer->format;
+}