Chage the 'base' field to be the name of the super class instead

Instead of display->base.base we want display->proxy.object, or

        buffer->buffer.resource.object.id = id;

which makes it clear what we end up addressing.
dev
Kristian Høgsberg 14 years ago
parent b71cd9e31d
commit b313b02983
  1. 225
      compositor/compositor.c
  2. 16
      compositor/compositor.h
  3. 53
      compositor/drm.c
  4. 40
      compositor/shm.c
  5. 24
      wayland/wayland-client.c
  6. 44
      wayland/wayland-server.c
  7. 16
      wayland/wayland-server.h

@ -157,7 +157,7 @@ static void
destroy_surface(struct wl_resource *resource, struct wl_client *client)
{
struct wlsc_surface *surface =
container_of(resource, struct wlsc_surface, base.base);
container_of(resource, struct wlsc_surface, surface.resource);
struct wlsc_compositor *compositor = surface->compositor;
struct wlsc_listener *l;
@ -400,7 +400,7 @@ static void
surface_destroy(struct wl_client *client,
struct wl_surface *surface)
{
wl_resource_destroy(&surface->base, client);
wl_resource_destroy(&surface->resource, client);
}
static void
@ -453,7 +453,7 @@ wlsc_input_device_attach(struct wlsc_input_device *device,
{
struct wlsc_compositor *ec = device->ec;
buffer->attach(buffer, &device->sprite->base);
buffer->attach(buffer, &device->sprite->surface);
device->hotspot_x = x;
device->hotspot_y = y;
@ -474,7 +474,7 @@ wlsc_input_device_set_pointer_image(struct wlsc_input_device *device,
struct wlsc_compositor *compositor = device->ec;
wlsc_input_device_attach(device,
&compositor->pointer_buffers[type]->base,
&compositor->pointer_buffers[type]->buffer,
pointer_images[type].hotspot_x,
pointer_images[type].hotspot_y);
}
@ -485,7 +485,7 @@ wlsc_input_device_start_grab(struct wlsc_input_device *device,
enum wlsc_grab_type grab)
{
struct wlsc_surface *focus =
(struct wlsc_surface *) device->base.pointer_focus;
(struct wlsc_surface *) device->input_device.pointer_focus;
device->grab = grab;
device->grab_surface = focus;
@ -494,7 +494,7 @@ wlsc_input_device_start_grab(struct wlsc_input_device *device,
device->grab_width = focus->width;
device->grab_height = focus->height;
wl_input_device_set_pointer_focus(&device->base,
wl_input_device_set_pointer_focus(&device->input_device,
&wl_grab_surface, time, 0, 0, 0, 0);
}
@ -507,7 +507,7 @@ shell_move(struct wl_client *client, struct wl_shell *shell,
if (wd->grab != WLSC_DEVICE_GRAB_MOTION ||
wd->grab_time != time ||
wd->base.pointer_focus != surface)
wd->input_device.pointer_focus != surface)
return;
wlsc_input_device_start_grab(wd, time, WLSC_DEVICE_GRAB_MOVE);
@ -528,7 +528,7 @@ shell_resize(struct wl_client *client, struct wl_shell *shell,
if (wd->grab != WLSC_DEVICE_GRAB_MOTION ||
wd->grab_time != time ||
wd->base.pointer_focus != surface)
wd->input_device.pointer_focus != surface)
return;
switch (edges) {
@ -603,7 +603,7 @@ drag_handle_surface_destroy(struct wlsc_listener *listener,
container_of(listener, struct wlsc_drag, listener);
uint32_t time = get_time();
if (drag->drag.pointer_focus == &surface->base)
if (drag->drag.pointer_focus == &surface->surface)
wl_drag_set_pointer_focus(&drag->drag, NULL, time, 0, 0, 0, 0);
}
@ -622,9 +622,9 @@ shell_create_drag(struct wl_client *client,
}
memset(drag, 0, sizeof *drag);
drag->drag.resource.base.id = id;
drag->drag.resource.base.interface = &wl_drag_interface;
drag->drag.resource.base.implementation =
drag->drag.resource.object.id = id;
drag->drag.resource.object.interface = &wl_drag_interface;
drag->drag.resource.object.implementation =
(void (**)(void)) &drag_interface;
drag->drag.resource.destroy = destroy_drag;
@ -656,15 +656,15 @@ compositor_create_surface(struct wl_client *client,
}
wl_list_insert(ec->surface_list.prev, &surface->link);
surface->base.base.destroy = destroy_surface;
surface->surface.resource.destroy = destroy_surface;
surface->base.base.base.id = id;
surface->base.base.base.interface = &wl_surface_interface;
surface->base.base.base.implementation =
surface->surface.resource.object.id = id;
surface->surface.resource.object.interface = &wl_surface_interface;
surface->surface.resource.object.implementation =
(void (**)(void)) &surface_interface;
surface->base.client = client;
surface->surface.client = client;
wl_client_add_resource(client, &surface->base.base);
wl_client_add_resource(client, &surface->surface.resource);
}
const static struct wl_compositor_interface compositor_interface = {
@ -723,20 +723,21 @@ notify_motion(struct wlsc_input_device *device, uint32_t time, int x, int y)
switch (device->grab) {
case WLSC_DEVICE_GRAB_NONE:
es = pick_surface(device, &sx, &sy);
wl_input_device_set_pointer_focus(&device->base, &es->base,
wl_input_device_set_pointer_focus(&device->input_device,
&es->surface,
time, x, y, sx, sy);
if (es)
wl_client_post_event(es->base.client,
&device->base.base,
wl_client_post_event(es->surface.client,
&device->input_device.object,
WL_INPUT_DEVICE_MOTION,
time, x, y, sx, sy);
break;
case WLSC_DEVICE_GRAB_MOTION:
es = (struct wlsc_surface *) device->base.pointer_focus;
es = (struct wlsc_surface *) device->input_device.pointer_focus;
wlsc_surface_transform(es, x, y, &sx, &sy);
wl_client_post_event(es->base.client,
&device->base.base,
wl_client_post_event(es->surface.client,
&device->input_device.object,
WL_INPUT_DEVICE_MOTION,
time, x, y, sx, sy);
break;
@ -745,11 +746,11 @@ notify_motion(struct wlsc_input_device *device, uint32_t time, int x, int y)
es = device->grab_surface;
es->x = x + device->grab_dx;
es->y = y + device->grab_dy;;
wl_client_post_event(es->base.client,
&ec->shell.base,
wl_client_post_event(es->surface.client,
&ec->shell.object,
WL_SHELL_CONFIGURE,
time, device->grab,
&es->base, es->x, es->y,
&es->surface, es->x, es->y,
es->width, es->height);
wlsc_surface_update_matrix(es);
@ -789,10 +790,10 @@ notify_motion(struct wlsc_input_device *device, uint32_t time, int x, int y)
height = device->grab_height;
}
wl_client_post_event(es->base.client,
&ec->shell.base,
wl_client_post_event(es->surface.client,
&ec->shell.object,
WL_SHELL_CONFIGURE, time, device->grab,
&es->base, sx, sy, width, height);
&es->surface, sx, sy, width, height);
break;
case WLSC_DEVICE_GRAB_DRAG:
@ -800,8 +801,8 @@ notify_motion(struct wlsc_input_device *device, uint32_t time, int x, int y)
wl_drag_set_pointer_focus(device->drag,
es, time, x, y, sx, sy);
if (es)
wl_client_post_event(es->base.client,
&device->drag->drag_offer.base,
wl_client_post_event(es->surface.client,
&device->drag->drag_offer.object,
WL_DRAG_OFFER_MOTION,
time, x, y, sx, sy);
break;
@ -826,7 +827,7 @@ wlsc_input_device_end_grab(struct wlsc_input_device *device, uint32_t time)
case WLSC_DEVICE_GRAB_DRAG:
if (drag->target)
wl_client_post_event(drag->target,
&drag->drag_offer.base,
&drag->drag_offer.object,
WL_DRAG_OFFER_DROP);
wl_drag_set_pointer_focus(drag, NULL, time, 0, 0, 0, 0);
device->drag = NULL;
@ -837,8 +838,9 @@ wlsc_input_device_end_grab(struct wlsc_input_device *device, uint32_t time)
device->grab = WLSC_DEVICE_GRAB_NONE;
es = pick_surface(device, &sx, &sy);
wl_input_device_set_pointer_focus(&device->base, &es->base, time,
device->x, device->y, sx, sy);
wl_input_device_set_pointer_focus(&device->input_device,
&es->surface, time,
device->x, device->y, sx, sy);
}
void
@ -848,7 +850,7 @@ notify_button(struct wlsc_input_device *device,
struct wlsc_surface *surface;
struct wlsc_compositor *compositor = device->ec;
surface = (struct wlsc_surface *) device->base.pointer_focus;
surface = (struct wlsc_surface *) device->input_device.pointer_focus;
if (surface) {
if (state && device->grab == WLSC_DEVICE_GRAB_NONE) {
wlsc_surface_raise(surface);
@ -857,27 +859,30 @@ notify_button(struct wlsc_input_device *device,
device->grab_time = time;
device->grab_x = device->x;
device->grab_y = device->y;
wl_input_device_set_keyboard_focus(&device->base,
&surface->base,
wl_input_device_set_keyboard_focus(&device->input_device,
&surface->surface,
time);
}
if (state && button == BTN_LEFT &&
device->grab == WLSC_DEVICE_GRAB_MOTION &&
(device->modifier_state & MODIFIER_SUPER))
shell_move(NULL, (struct wl_shell *) &compositor->shell,
&surface->base, &device->base, time);
shell_move(NULL,
(struct wl_shell *) &compositor->shell,
&surface->surface,
&device->input_device, time);
else if (state && button == BTN_MIDDLE &&
device->grab == WLSC_DEVICE_GRAB_MOTION &&
(device->modifier_state & MODIFIER_SUPER))
shell_resize(NULL, (struct wl_shell *) &compositor->shell,
&surface->base, &device->base, time,
shell_resize(NULL,
(struct wl_shell *) &compositor->shell,
&surface->surface,
&device->input_device, time,
WLSC_DEVICE_GRAB_RESIZE_BOTTOM_RIGHT);
else if (device->grab == WLSC_DEVICE_GRAB_NONE ||
device->grab == WLSC_DEVICE_GRAB_MOTION)
wl_client_post_event(surface->base.client,
&device->base.base,
wl_client_post_event(surface->surface.client,
&device->input_device.object,
WL_INPUT_DEVICE_BUTTON,
time, button, state);
@ -930,20 +935,20 @@ notify_key(struct wlsc_input_device *device,
else
device->modifier_state &= ~modifier;
end = device->base.keys.data + device->base.keys.size;
for (k = device->base.keys.data; k < end; k++) {
end = device->input_device.keys.data + device->input_device.keys.size;
for (k = device->input_device.keys.data; k < end; k++) {
if (*k == key)
*k = *--end;
}
device->base.keys.size = (void *) end - device->base.keys.data;
device->input_device.keys.size = (void *) end - device->input_device.keys.data;
if (state) {
k = wl_array_add(&device->base.keys, sizeof *k);
k = wl_array_add(&device->input_device.keys, sizeof *k);
*k = key;
}
if (device->base.keyboard_focus != NULL)
wl_client_post_event(device->base.keyboard_focus->client,
&device->base.base,
if (device->input_device.keyboard_focus != NULL)
wl_client_post_event(device->input_device.keyboard_focus->client,
&device->input_device.object,
WL_INPUT_DEVICE_KEY, time, key, state);
}
@ -956,14 +961,14 @@ input_device_attach(struct wl_client *client,
struct wlsc_input_device *device =
(struct wlsc_input_device *) device_base;
if (time < device->base.pointer_focus_time)
if (time < device->input_device.pointer_focus_time)
return;
if (device->base.pointer_focus == NULL)
if (device->input_device.pointer_focus == NULL)
return;
if (device->base.pointer_focus->client != client &&
!(device->base.pointer_focus == &wl_grab_surface &&
device->grab_surface->base.client == client))
if (device->input_device.pointer_focus->client != client &&
!(device->input_device.pointer_focus == &wl_grab_surface &&
device->grab_surface->surface.client == client))
return;
if (buffer == NULL) {
@ -987,13 +992,13 @@ handle_surface_destroy(struct wlsc_listener *listener,
container_of(listener, struct wlsc_input_device, listener);
uint32_t time = get_time();
if (device->base.keyboard_focus == &surface->base)
wl_input_device_set_keyboard_focus(&device->base, NULL, time);
if (device->base.pointer_focus == &surface->base)
wl_input_device_set_pointer_focus(&device->base, NULL, time,
if (device->input_device.keyboard_focus == &surface->surface)
wl_input_device_set_keyboard_focus(&device->input_device, NULL, time);
if (device->input_device.pointer_focus == &surface->surface)
wl_input_device_set_pointer_focus(&device->input_device, NULL, time,
0, 0, 0, 0);
if (device->base.pointer_focus == &surface->base ||
(device->base.pointer_focus == &wl_grab_surface &&
if (device->input_device.pointer_focus == &surface->surface ||
(device->input_device.pointer_focus == &wl_grab_surface &&
device->grab_surface == surface))
wlsc_input_device_end_grab(device, time);
}
@ -1005,39 +1010,39 @@ wl_drag_set_pointer_focus(struct wl_drag *drag,
{
char **p, **end;
if (drag->pointer_focus == &surface->base)
if (drag->pointer_focus == &surface->surface)
return;
if (drag->pointer_focus &&
(!surface || drag->pointer_focus->client != surface->base.client))
(!surface || drag->pointer_focus->client != surface->surface.client))
wl_client_post_event(drag->pointer_focus->client,
&drag->drag_offer.base,
&drag->drag_offer.object,
WL_DRAG_OFFER_POINTER_FOCUS,
time, NULL, 0, 0, 0, 0);
if (surface &&
(!drag->pointer_focus ||
drag->pointer_focus->client != surface->base.client)) {
wl_client_post_global(surface->base.client,
&drag->drag_offer.base);
drag->pointer_focus->client != surface->surface.client)) {
wl_client_post_global(surface->surface.client,
&drag->drag_offer.object);
end = drag->types.data + drag->types.size;
for (p = drag->types.data; p < end; p++)
wl_client_post_event(surface->base.client,
&drag->drag_offer.base,
wl_client_post_event(surface->surface.client,
&drag->drag_offer.object,
WL_DRAG_OFFER_OFFER, *p);
}
if (surface) {
wl_client_post_event(surface->base.client,
&drag->drag_offer.base,
wl_client_post_event(surface->surface.client,
&drag->drag_offer.object,
WL_DRAG_OFFER_POINTER_FOCUS,
time, &surface->base,
time, &surface->surface,
x, y, sx, sy);
}
drag->pointer_focus = &surface->base;
drag->pointer_focus = &surface->surface;
drag->pointer_focus_time = time;
drag->target = NULL;
}
@ -1064,7 +1069,7 @@ drag_offer_accept(struct wl_client *client,
if (type && strcmp(*p, type) == 0)
drag->type = *p;
wl_client_post_event(drag->source->client, &drag->resource.base,
wl_client_post_event(drag->source->client, &drag->resource.object,
WL_DRAG_TARGET, drag->type);
}
@ -1074,7 +1079,7 @@ drag_offer_receive(struct wl_client *client,
{
struct wl_drag *drag = container_of(offer, struct wl_drag, drag_offer);
wl_client_post_event(drag->source->client, &drag->resource.base,
wl_client_post_event(drag->source->client, &drag->resource.object,
WL_DRAG_FINISH, fd);
close(fd);
}
@ -1084,7 +1089,7 @@ drag_offer_reject(struct wl_client *client, struct wl_drag_offer *offer)
{
struct wl_drag *drag = container_of(offer, struct wl_drag, drag_offer);
wl_client_post_event(drag->source->client, &drag->resource.base,
wl_client_post_event(drag->source->client, &drag->resource.object,
WL_DRAG_REJECT);
}
@ -1119,18 +1124,18 @@ drag_activate(struct wl_client *client,
int32_t sx, sy;
if (device->grab != WLSC_DEVICE_GRAB_MOTION ||
device->base.pointer_focus != surface ||
device->input_device.pointer_focus != surface ||
device->grab_time != time)
return;
drag->source = surface;
drag->input_device = input_device;
drag->drag_offer.base.interface = &wl_drag_offer_interface;
drag->drag_offer.base.implementation =
drag->drag_offer.object.interface = &wl_drag_offer_interface;
drag->drag_offer.object.implementation =
(void (**)(void)) &drag_offer_interface;
wl_display_add_object(display, &drag->drag_offer.base);
wl_display_add_object(display, &drag->drag_offer.object);
wlsc_input_device_start_grab(device, time,
WLSC_DEVICE_GRAB_DRAG);
@ -1164,11 +1169,11 @@ void
wlsc_input_device_init(struct wlsc_input_device *device,
struct wlsc_compositor *ec)
{
device->base.base.interface = &wl_input_device_interface;
device->base.base.implementation =
device->input_device.object.interface = &wl_input_device_interface;
device->input_device.object.implementation =
(void (**)(void)) &input_device_interface;
wl_display_add_object(ec->wl_display, &device->base.base);
wl_display_add_global(ec->wl_display, &device->base.base, NULL);
wl_display_add_object(ec->wl_display, &device->input_device.object);
wl_display_add_global(ec->wl_display, &device->input_device.object, NULL);
device->x = 100;
device->y = 100;
@ -1190,7 +1195,7 @@ static void
wlsc_output_post_geometry(struct wl_client *client, struct wl_object *global)
{
struct wlsc_output *output =
container_of(global, struct wlsc_output, base);
container_of(global, struct wlsc_output, object);
wl_client_post_event(client, global,
WL_OUTPUT_GEOMETRY,
@ -1304,22 +1309,22 @@ static const struct wl_interface visual_interface = {
static void
add_visuals(struct wlsc_compositor *ec)
{
ec->argb_visual.base.interface = &visual_interface;
ec->argb_visual.base.implementation = NULL;
wl_display_add_object(ec->wl_display, &ec->argb_visual.base);
wl_display_add_global(ec->wl_display, &ec->argb_visual.base, NULL);
ec->argb_visual.object.interface = &visual_interface;
ec->argb_visual.object.implementation = NULL;
wl_display_add_object(ec->wl_display, &ec->argb_visual.object);
wl_display_add_global(ec->wl_display, &ec->argb_visual.object, NULL);
ec->premultiplied_argb_visual.base.interface = &visual_interface;
ec->premultiplied_argb_visual.base.implementation = NULL;
ec->premultiplied_argb_visual.object.interface = &visual_interface;
ec->premultiplied_argb_visual.object.implementation = NULL;
wl_display_add_object(ec->wl_display,
&ec->premultiplied_argb_visual.base);
&ec->premultiplied_argb_visual.object);
wl_display_add_global(ec->wl_display,
&ec->premultiplied_argb_visual.base, NULL);
&ec->premultiplied_argb_visual.object, NULL);
ec->rgb_visual.base.interface = &visual_interface;
ec->rgb_visual.base.implementation = NULL;
wl_display_add_object(ec->wl_display, &ec->rgb_visual.base);
wl_display_add_global(ec->wl_display, &ec->rgb_visual.base, NULL);
ec->rgb_visual.object.interface = &visual_interface;
ec->rgb_visual.object.implementation = NULL;
wl_display_add_object(ec->wl_display, &ec->rgb_visual.object);
wl_display_add_global(ec->wl_display, &ec->rgb_visual.object, NULL);
}
void
@ -1342,9 +1347,9 @@ wlsc_output_init(struct wlsc_output *output, struct wlsc_compositor *c,
wlsc_matrix_scale(&output->matrix,
2.0 / output->width, 2.0 / output->height, 1);
output->base.interface = &wl_output_interface;
wl_display_add_object(c->wl_display, &output->base);
wl_display_add_global(c->wl_display, &output->base,
output->object.interface = &wl_output_interface;
wl_display_add_object(c->wl_display, &output->object);
wl_display_add_global(c->wl_display, &output->object,
wlsc_output_post_geometry);
}
@ -1355,20 +1360,20 @@ wlsc_compositor_init(struct wlsc_compositor *ec, struct wl_display *display)
ec->wl_display = display;
ec->base.base.interface = &wl_compositor_interface;
ec->base.base.implementation =
ec->compositor.object.interface = &wl_compositor_interface;
ec->compositor.object.implementation =
(void (**)(void)) &compositor_interface;
wl_display_add_object(display, &ec->base.base);
if (wl_display_add_global(display, &ec->base.base, NULL))
wl_display_add_object(display, &ec->compositor.object);
if (wl_display_add_global(display, &ec->compositor.object, NULL))
return -1;
wlsc_shm_init(ec);
ec->shell.base.interface = &wl_shell_interface;
ec->shell.base.implementation = (void (**)(void)) &shell_interface;
wl_display_add_object(display, &ec->shell.base);
if (wl_display_add_global(display, &ec->shell.base, NULL))
ec->shell.object.interface = &wl_shell_interface;
ec->shell.object.implementation = (void (**)(void)) &shell_interface;
wl_display_add_object(display, &ec->shell.object);
if (wl_display_add_global(display, &ec->shell.object, NULL))
return -1;
add_visuals(ec);

@ -48,7 +48,7 @@ struct wlsc_listener {
};
struct wlsc_output {
struct wl_object base;
struct wl_object object;
struct wl_list link;
struct wlsc_compositor *compositor;
struct wlsc_surface *background;
@ -88,7 +88,7 @@ enum wlsc_pointer_type {
};
struct wlsc_input_device {
struct wl_input_device base;
struct wl_input_device input_device;
int32_t x, y;
struct wlsc_compositor *ec;
struct wlsc_surface *sprite;
@ -110,28 +110,28 @@ struct wlsc_input_device {
};
struct wlsc_drm {
struct wl_object base;
struct wl_object object;
int fd;
char *filename;
};
struct wlsc_drm_buffer {
struct wl_buffer base;
struct wl_buffer buffer;
EGLImageKHR image;
};
struct wlsc_shm {
struct wl_object base;
struct wl_object object;
};
struct wlsc_shm_buffer {
struct wl_buffer base;
struct wl_buffer buffer;
int32_t stride;
void *data;
};
struct wlsc_compositor {
struct wl_compositor base;
struct wl_compositor compositor;
struct wl_visual argb_visual, premultiplied_argb_visual, rgb_visual;
struct wlsc_drm drm;
@ -177,7 +177,7 @@ struct wlsc_vector {
};
struct wlsc_surface {
struct wl_surface base;
struct wl_surface surface;
struct wlsc_compositor *compositor;
GLuint texture;
int32_t x, y, width, height;

@ -35,16 +35,17 @@ drm_authenticate(struct wl_client *client,
(struct wl_object *) compositor->wl_display,
WL_DISPLAY_INVALID_OBJECT, 0);
else
wl_client_post_event(client, &drm->base, WL_DRM_AUTHENTICATED);
wl_client_post_event(client, &drm->object,
WL_DRM_AUTHENTICATED);
}
static void
destroy_buffer(struct wl_resource *resource, struct wl_client *client)
{
struct wlsc_drm_buffer *buffer =
container_of(resource, struct wlsc_drm_buffer, base.base);
container_of(resource, struct wlsc_drm_buffer, buffer.resource);
struct wlsc_compositor *compositor =
(struct wlsc_compositor *) buffer->base.compositor;
(struct wlsc_compositor *) buffer->buffer.compositor;
eglDestroyImageKHR(compositor->display, buffer->image);
free(buffer);
@ -53,7 +54,7 @@ destroy_buffer(struct wl_resource *resource, struct wl_client *client)
static void
buffer_destroy(struct wl_client *client, struct wl_buffer *buffer)
{
wl_resource_destroy(&buffer->base, client);
wl_resource_destroy(&buffer->resource, client);
}
const static struct wl_buffer_interface buffer_interface = {
@ -69,7 +70,7 @@ drm_buffer_attach(struct wl_buffer *buffer_base, struct wl_surface *surface)
glBindTexture(GL_TEXTURE_2D, es->texture);
glEGLImageTargetTexture2DOES(GL_TEXTURE_2D, buffer->image);
es->visual = buffer->base.visual;
es->visual = buffer->buffer.visual;
}
static void
@ -118,12 +119,12 @@ drm_create_buffer(struct wl_client *client, struct wl_drm *drm_base,
attribs[3] = height;
attribs[5] = stride / 4;
buffer->base.compositor = &compositor->base;
buffer->base.width = width;
buffer->base.height = height;
buffer->base.visual = visual;
buffer->base.attach = drm_buffer_attach;
buffer->base.damage = drm_buffer_damage;
buffer->buffer.compositor = &compositor->compositor;
buffer->buffer.width = width;
buffer->buffer.height = height;
buffer->buffer.visual = visual;
buffer->buffer.attach = drm_buffer_attach;
buffer->buffer.damage = drm_buffer_damage;
buffer->image = eglCreateImageKHR(compositor->display,
compositor->context,
EGL_DRM_BUFFER_MESA,
@ -139,14 +140,14 @@ drm_create_buffer(struct wl_client *client, struct wl_drm *drm_base,
return;
}
buffer->base.base.base.id = id;
buffer->base.base.base.interface = &wl_buffer_interface;
buffer->base.base.base.implementation = (void (**)(void))
buffer->buffer.resource.object.id = id;
buffer->buffer.resource.object.interface = &wl_buffer_interface;
buffer->buffer.resource.object.implementation = (void (**)(void))
&buffer_interface;
buffer->base.base.destroy = destroy_buffer;
buffer->buffer.resource.destroy = destroy_buffer;
wl_client_add_resource(client, &buffer->base.base);
wl_client_add_resource(client, &buffer->buffer.resource);
}
const static struct wl_drm_interface drm_interface = {
@ -157,7 +158,7 @@ const static struct wl_drm_interface drm_interface = {
static void
post_drm_device(struct wl_client *client, struct wl_object *global)
{
struct wlsc_drm *drm = container_of(global, struct wlsc_drm, base);
struct wlsc_drm *drm = container_of(global, struct wlsc_drm, object);
wl_client_post_event(client, global, WL_DRM_DEVICE, drm->filename);
}
@ -172,10 +173,10 @@ wlsc_drm_init(struct wlsc_compositor *ec, int fd, const char *filename)
if (drm->filename == NULL)
return -1;
drm->base.interface = &wl_drm_interface;
drm->base.implementation = (void (**)(void)) &drm_interface;
wl_display_add_object(ec->wl_display, &drm->base);
wl_display_add_global(ec->wl_display, &drm->base, post_drm_device);
drm->object.interface = &wl_drm_interface;
drm->object.implementation = (void (**)(void)) &drm_interface;
wl_display_add_object(ec->wl_display, &drm->object);
wl_display_add_global(ec->wl_display, &drm->object, post_drm_device);
return 0;
}
@ -208,11 +209,11 @@ wlsc_drm_buffer_create(struct wlsc_compositor *ec,
return NULL;
}
buffer->base.visual = visual;
buffer->base.width = width;
buffer->base.height = height;
buffer->base.attach = drm_buffer_attach;
buffer->base.damage = drm_buffer_damage;
buffer->buffer.visual = visual;
buffer->buffer.width = width;
buffer->buffer.height = height;
buffer->buffer.attach = drm_buffer_attach;
buffer->buffer.damage = drm_buffer_damage;
return buffer;
}

@ -28,9 +28,9 @@ static void
destroy_buffer(struct wl_resource *resource, struct wl_client *client)
{
struct wlsc_shm_buffer *buffer =
container_of(resource, struct wlsc_shm_buffer, base.base);
container_of(resource, struct wlsc_shm_buffer, buffer.resource);
munmap(buffer->data, buffer->stride * buffer->base.height);
munmap(buffer->data, buffer->stride * buffer->buffer.height);
free(buffer);
}
@ -59,9 +59,9 @@ shm_buffer_attach(struct wl_buffer *buffer_base, struct wl_surface *surface)
0, 0, 0, GL_BGRA_EXT, GL_UNSIGNED_BYTE, NULL);
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA,
buffer->base.width, buffer->base.height, 0,
buffer->buffer.width, buffer->buffer.height, 0,
GL_BGRA_EXT, GL_UNSIGNED_BYTE, buffer->data);
es->visual = buffer->base.visual;
es->visual = buffer->buffer.visual;
}
static void
@ -75,7 +75,7 @@ shm_buffer_damage(struct wl_buffer *buffer_base,
glBindTexture(GL_TEXTURE_2D, es->texture);
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA,
buffer->base.width, buffer->base.height, 0,
buffer->buffer.width, buffer->buffer.height, 0,
GL_BGRA_EXT, GL_UNSIGNED_BYTE, buffer->data);
/* Hmm, should use glTexSubImage2D() here but GLES2 doesn't
@ -112,12 +112,12 @@ shm_create_buffer(struct wl_client *client, struct wl_shm *shm,
return;
}
buffer->base.compositor = (struct wl_compositor *) compositor;
buffer->base.width = width;
buffer->base.height = height;
buffer->base.visual = visual;
buffer->base.attach = shm_buffer_attach;
buffer->base.damage = shm_buffer_damage;
buffer->buffer.compositor = (struct wl_compositor *) compositor;
buffer->buffer.width = width;
buffer->buffer.height = height;
buffer->buffer.visual = visual;
buffer->buffer.attach = shm_buffer_attach;
buffer->buffer.damage = shm_buffer_damage;
buffer->stride = stride;
buffer->data =
mmap(NULL, stride * height, PROT_READ, MAP_SHARED, fd, 0);
@ -133,14 +133,14 @@ shm_create_buffer(struct wl_client *client, struct wl_shm *shm,
return;
}
buffer->base.base.base.id = id;
buffer->base.base.base.interface = &wl_buffer_interface;
buffer->base.base.base.implementation = (void (**)(void))
buffer->buffer.resource.object.id = id;
buffer->buffer.resource.object.interface = &wl_buffer_interface;
buffer->buffer.resource.object.implementation = (void (**)(void))
&buffer_interface;
buffer->base.base.destroy = destroy_buffer;
buffer->buffer.resource.destroy = destroy_buffer;
wl_client_add_resource(client, &buffer->base.base);
wl_client_add_resource(client, &buffer->buffer.resource);
}
const static struct wl_shm_interface shm_interface = {
@ -152,10 +152,10 @@ wlsc_shm_init(struct wlsc_compositor *ec)
{
struct wlsc_shm *shm = &ec->shm;
shm->base.interface = &wl_shm_interface;
shm->base.implementation = (void (**)(void)) &shm_interface;
wl_display_add_object(ec->wl_display, &shm->base);
wl_display_add_global(ec->wl_display, &shm->base, NULL);
shm->object.interface = &wl_shm_interface;
shm->object.implementation = (void (**)(void)) &shm_interface;
wl_display_add_object(ec->wl_display, &shm->object);
wl_display_add_global(ec->wl_display, &shm->object, NULL);
return 0;
}

@ -51,7 +51,7 @@ struct wl_listener {
};
struct wl_proxy {
struct wl_object base;
struct wl_object object;
struct wl_display *display;
struct wl_list listener_list;
void *user_data;
@ -144,11 +144,11 @@ wl_proxy_create_for_id(struct wl_display *display,
if (proxy == NULL)
return NULL;
proxy->base.interface = interface;
proxy->base.id = id;
proxy->object.interface = interface;
proxy->object.id = id;
proxy->display = display;
wl_list_init(&proxy->listener_list);
wl_hash_table_insert(display->objects, proxy->base.id, proxy);
wl_hash_table_insert(display->objects, proxy->object.id, proxy);
return proxy;
}
@ -169,7 +169,7 @@ wl_proxy_destroy(struct wl_proxy *proxy)
wl_list_for_each_safe(listener, next, &proxy->listener_list, link)
free(listener);
wl_hash_table_remove(proxy->display->objects, proxy->base.id);
wl_hash_table_remove(proxy->display->objects, proxy->object.id);
free(proxy);
}
@ -198,8 +198,8 @@ wl_proxy_marshal(struct wl_proxy *proxy, uint32_t opcode, ...)
va_start(ap, opcode);
closure = wl_connection_vmarshal(proxy->display->connection,
&proxy->base, opcode, ap,
&proxy->base.interface->methods[opcode]);
&proxy->object, opcode, ap,
&proxy->object.interface->methods[opcode]);
va_end(ap);
wl_closure_send(closure, proxy->display->connection);
@ -273,7 +273,7 @@ display_handle_global(void *data,
if (strcmp(interface, "display") == 0)
wl_hash_table_insert(display->objects,
id, &display->proxy.base);
id, &display->proxy.object);
else if (strcmp(interface, "visual") == 0)
add_visual(display, id);
@ -377,8 +377,8 @@ wl_display_connect(const char *name)
display->objects = wl_hash_table_create();
wl_list_init(&display->global_listener_list);
display->proxy.base.interface = &wl_display_interface;
display->proxy.base.id = 1;
display->proxy.object.interface = &wl_display_interface;
display->proxy.object.id = 1;
display->proxy.display = display;
wl_list_init(&display->proxy.listener_list);
@ -476,12 +476,12 @@ handle_event(struct wl_display *display,
return;
}
message = &proxy->base.interface->events[opcode];
message = &proxy->object.interface->events[opcode];
closure = wl_connection_demarshal(display->connection,
size, display->objects, message);
wl_list_for_each(listener, &proxy->listener_list, link)
wl_closure_invoke(closure, &proxy->base,
wl_closure_invoke(closure, &proxy->object,
listener->implementation[opcode],
listener->data);

@ -53,7 +53,7 @@ struct wl_client {
};
struct wl_display {
struct wl_object base;
struct wl_object object;
struct wl_event_loop *loop;
struct wl_hash_table *objects;
int run;
@ -142,7 +142,7 @@ wl_client_connection_data(int fd, uint32_t mask, void *data)
object = wl_hash_table_lookup(client->display->objects, p[0]);
if (object == NULL) {
wl_client_post_event(client, &client->display->base,
wl_client_post_event(client, &client->display->object,
WL_DISPLAY_INVALID_OBJECT, p[0]);
wl_connection_consume(connection, size);
len -= size;
@ -150,7 +150,7 @@ wl_client_connection_data(int fd, uint32_t mask, void *data)
}
if (opcode >= object->interface->method_count) {
wl_client_post_event(client, &client->display->base,
wl_client_post_event(client, &client->display->object,
WL_DISPLAY_INVALID_METHOD, p[0], opcode);
wl_connection_consume(connection, size);
len -= size;
@ -164,7 +164,7 @@ wl_client_connection_data(int fd, uint32_t mask, void *data)
len -= size;
if (closure == NULL && errno == EINVAL) {
wl_client_post_event(client, &client->display->base,
wl_client_post_event(client, &client->display->object,
WL_DISPLAY_INVALID_METHOD,
p[0], opcode);
continue;
@ -208,7 +208,7 @@ wl_client_get_display(struct wl_client *client)
static void
wl_display_post_range(struct wl_display *display, struct wl_client *client)
{
wl_client_post_event(client, &client->display->base,
wl_client_post_event(client, &client->display->object,
WL_DISPLAY_RANGE, display->client_id_range);
display->client_id_range += 256;
client->id_count += 256;
@ -237,7 +237,7 @@ wl_client_create(struct wl_display *display, int fd)
wl_display_post_range(display, client);
wl_list_for_each(global, &display->global_list, link)
wl_client_post_event(client, &client->display->base,
wl_client_post_event(client, &client->display->object,
WL_DISPLAY_GLOBAL,
global->object,
global->object->interface->name,
@ -260,7 +260,7 @@ wl_client_add_resource(struct wl_client *client,
wl_display_post_range(display, client);
wl_hash_table_insert(client->display->objects,
resource->base.id, resource);
resource->object.id, resource);
wl_list_insert(client->resource_list.prev, &resource->link);
}
@ -268,7 +268,7 @@ WL_EXPORT void
wl_client_post_no_memory(struct wl_client *client)
{
wl_client_post_event(client,
&client->display->base,
&client->display->object,
WL_DISPLAY_NO_MEMORY);
}
@ -276,7 +276,7 @@ WL_EXPORT void
wl_client_post_global(struct wl_client *client, struct wl_object *object)
{
wl_client_post_event(client,
&client->display->base,
&client->display->object,
WL_DISPLAY_GLOBAL,
object,
object->interface->name,
@ -289,8 +289,8 @@ wl_resource_destroy(struct wl_resource *resource, struct wl_client *client)
struct wl_display *display = client->display;
wl_list_remove(&resource->link);
if (resource->base.id > 0)
wl_hash_table_remove(display->objects, resource->base.id);
if (resource->object.id > 0)
wl_hash_table_remove(display->objects, resource->object.id);
resource->destroy(resource, client);
}
@ -322,12 +322,12 @@ wl_input_device_set_pointer_focus(struct wl_input_device *device,
if (device->pointer_focus &&
(!surface || device->pointer_focus->client != surface->client))
wl_client_post_event(device->pointer_focus->client,
&device->base,
&device->object,
WL_INPUT_DEVICE_POINTER_FOCUS,
time, NULL, 0, 0, 0, 0);
if (surface)
wl_client_post_event(surface->client,
&device->base,
&device->object,
WL_INPUT_DEVICE_POINTER_FOCUS,
time, surface, x, y, sx, sy);
@ -346,13 +346,13 @@ wl_input_device_set_keyboard_focus(struct wl_input_device *device,
if (device->keyboard_focus &&
(!surface || device->keyboard_focus->client != surface->client))
wl_client_post_event(device->keyboard_focus->client,
&device->base,
&device->object,
WL_INPUT_DEVICE_KEYBOARD_FOCUS,
time, NULL, &device->keys);
if (surface)
wl_client_post_event(surface->client,
&device->base,
&device->object,
WL_INPUT_DEVICE_KEYBOARD_FOCUS,
time, surface, &device->keys);
@ -364,7 +364,7 @@ static void
display_sync(struct wl_client *client,
struct wl_display *display, uint32_t key)
{
wl_client_post_event(client, &display->base, WL_DISPLAY_KEY, key, 0);
wl_client_post_event(client, &display->object, WL_DISPLAY_KEY, key, 0);
}
static void
@ -392,7 +392,7 @@ display_frame(struct wl_client *client,
/* The listener is a resource so we destroy it when the client
* goes away. */
listener->resource.destroy = destroy_frame_listener;
listener->resource.base.id = 0;
listener->resource.object.id = 0;
listener->client = client;
listener->key = key;
wl_list_insert(client->resource_list.prev, &listener->resource.link);
@ -438,10 +438,10 @@ wl_display_create(void)
display->client_id_range = 256; /* Gah, arbitrary... */
display->id = 1;
display->base.interface = &wl_display_interface;
display->base.implementation = (void (**)(void)) &display_interface;
wl_display_add_object(display, &display->base);
if (wl_display_add_global(display, &display->base, NULL)) {
display->object.interface = &wl_display_interface;
display->object.implementation = (void (**)(void)) &display_interface;
wl_display_add_object(display, &display->object);
if (wl_display_add_global(display, &display->object, NULL)) {
wl_event_loop_destroy(display->loop);
free(display);
return NULL;
@ -497,7 +497,7 @@ wl_display_post_frame(struct wl_display *display, uint32_t time)
struct wl_frame_listener *listener, *next;
wl_list_for_each_safe(listener, next, &display->frame_list, link) {
wl_client_post_event(listener->client, &display->base,
wl_client_post_event(listener->client, &display->object,
WL_DISPLAY_KEY, listener->key, time);
wl_resource_destroy(&listener->resource, listener->client);
}

@ -98,18 +98,18 @@ void wl_client_post_no_memory(struct wl_client *client);
void wl_client_post_global(struct wl_client *client, struct wl_object *object);
struct wl_compositor {
struct wl_object base;
struct wl_object object;
};
struct wl_resource {
struct wl_object base;
struct wl_object object;
void (*destroy)(struct wl_resource *resource,
struct wl_client *client);
struct wl_list link;
};
struct wl_buffer {
struct wl_resource base;
struct wl_resource resource;
struct wl_compositor *compositor;
struct wl_visual *visual;
int32_t width, height;
@ -120,16 +120,16 @@ struct wl_buffer {
};
struct wl_surface {
struct wl_resource base;
struct wl_resource resource;
struct wl_client *client;
};
struct wl_shell {
struct wl_object base;
struct wl_object object;
};
struct wl_input_device {
struct wl_object base;
struct wl_object object;
struct wl_surface *pointer_focus;
struct wl_surface *keyboard_focus;
struct wl_array keys;
@ -138,11 +138,11 @@ struct wl_input_device {
};
struct wl_visual {
struct wl_object base;
struct wl_object object;
};
struct wl_drag_offer {
struct wl_object base;
struct wl_object object;
};
struct wl_drag {

Loading…
Cancel
Save