Fix a few missing wlsc->weston renames
This commit is contained in:
+27
-27
@@ -38,7 +38,7 @@
|
|||||||
#include "evdev.h"
|
#include "evdev.h"
|
||||||
|
|
||||||
struct wfd_compositor {
|
struct wfd_compositor {
|
||||||
struct wlsc_compositor base;
|
struct weston_compositor base;
|
||||||
|
|
||||||
struct udev *udev;
|
struct udev *udev;
|
||||||
struct gbm_device *gbm;
|
struct gbm_device *gbm;
|
||||||
@@ -55,12 +55,12 @@ struct wfd_compositor {
|
|||||||
};
|
};
|
||||||
|
|
||||||
struct wfd_mode {
|
struct wfd_mode {
|
||||||
struct wlsc_mode base;
|
struct weston_mode base;
|
||||||
WFDPortMode mode;
|
WFDPortMode mode;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct wfd_output {
|
struct wfd_output {
|
||||||
struct wlsc_output base;
|
struct weston_output base;
|
||||||
|
|
||||||
WFDPort port;
|
WFDPort port;
|
||||||
|
|
||||||
@@ -86,7 +86,7 @@ union wfd_geometry {
|
|||||||
};
|
};
|
||||||
|
|
||||||
static int
|
static int
|
||||||
wfd_output_prepare_render(struct wlsc_output *output_base)
|
wfd_output_prepare_render(struct weston_output *output_base)
|
||||||
{
|
{
|
||||||
struct wfd_output *output = (struct wfd_output *) output_base;
|
struct wfd_output *output = (struct wfd_output *) output_base;
|
||||||
|
|
||||||
@@ -102,7 +102,7 @@ wfd_output_prepare_render(struct wlsc_output *output_base)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int
|
||||||
wfd_output_present(struct wlsc_output *output_base)
|
wfd_output_present(struct weston_output *output_base)
|
||||||
{
|
{
|
||||||
struct wfd_output *output = (struct wfd_output *) output_base;
|
struct wfd_output *output = (struct wfd_output *) output_base;
|
||||||
struct wfd_compositor *c =
|
struct wfd_compositor *c =
|
||||||
@@ -179,21 +179,21 @@ init_egl(struct wfd_compositor *ec)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int
|
||||||
wfd_output_prepare_scanout_surface(struct wlsc_output *output_base,
|
wfd_output_prepare_scanout_surface(struct weston_output *output_base,
|
||||||
struct wlsc_surface *es)
|
struct weston_surface *es)
|
||||||
{
|
{
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int
|
||||||
wfd_output_set_cursor(struct wlsc_output *output_base,
|
wfd_output_set_cursor(struct weston_output *output_base,
|
||||||
struct wlsc_input_device *input)
|
struct weston_input_device *input)
|
||||||
{
|
{
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
wfd_output_destroy(struct wlsc_output *output_base)
|
wfd_output_destroy(struct weston_output *output_base)
|
||||||
{
|
{
|
||||||
struct wfd_output *output = (struct wfd_output *) output_base;
|
struct wfd_output *output = (struct wfd_output *) output_base;
|
||||||
struct wfd_compositor *ec =
|
struct wfd_compositor *ec =
|
||||||
@@ -218,7 +218,7 @@ wfd_output_destroy(struct wlsc_output *output_base)
|
|||||||
wfdDestroyPipeline(ec->dev, output->pipeline);
|
wfdDestroyPipeline(ec->dev, output->pipeline);
|
||||||
wfdDestroyPort(ec->dev, output->port);
|
wfdDestroyPort(ec->dev, output->port);
|
||||||
|
|
||||||
wlsc_output_destroy(&output->base);
|
weston_output_destroy(&output->base);
|
||||||
wl_list_remove(&output->base.link);
|
wl_list_remove(&output->base.link);
|
||||||
|
|
||||||
free(output);
|
free(output);
|
||||||
@@ -348,13 +348,13 @@ create_output_for_port(struct wfd_compositor *ec,
|
|||||||
WFD_PORT_PHYSICAL_SIZE,
|
WFD_PORT_PHYSICAL_SIZE,
|
||||||
2, physical_size);
|
2, physical_size);
|
||||||
|
|
||||||
wlsc_output_init(&output->base, &ec->base, x, y,
|
weston_output_init(&output->base, &ec->base, x, y,
|
||||||
physical_size[0], physical_size[1], 0);
|
physical_size[0], physical_size[1], 0);
|
||||||
|
|
||||||
output->pipeline = wfdCreatePipeline(ec->dev, output->pipeline_id, NULL);
|
output->pipeline = wfdCreatePipeline(ec->dev, output->pipeline_id, NULL);
|
||||||
if (output->pipeline == WFD_INVALID_HANDLE) {
|
if (output->pipeline == WFD_INVALID_HANDLE) {
|
||||||
fprintf(stderr, "failed to create a pipeline\n");
|
fprintf(stderr, "failed to create a pipeline\n");
|
||||||
goto cleanup_wlsc_output;
|
goto cleanup_weston_output;
|
||||||
}
|
}
|
||||||
|
|
||||||
glGenRenderbuffers(2, output->rbo);
|
glGenRenderbuffers(2, output->rbo);
|
||||||
@@ -419,8 +419,8 @@ create_output_for_port(struct wfd_compositor *ec,
|
|||||||
|
|
||||||
cleanup_pipeline:
|
cleanup_pipeline:
|
||||||
wfdDestroyPipeline(ec->dev, output->pipeline);
|
wfdDestroyPipeline(ec->dev, output->pipeline);
|
||||||
cleanup_wlsc_output:
|
cleanup_weston_output:
|
||||||
wlsc_output_destroy(&output->base);
|
weston_output_destroy(&output->base);
|
||||||
cleanup_pipelines:
|
cleanup_pipelines:
|
||||||
free(pipelines);
|
free(pipelines);
|
||||||
cleanup_port:
|
cleanup_port:
|
||||||
@@ -456,7 +456,7 @@ create_outputs(struct wfd_compositor *ec, int option_connector)
|
|||||||
create_output_for_port(ec, port, x, y);
|
create_output_for_port(ec, port, x, y);
|
||||||
|
|
||||||
x += container_of(ec->base.output_list.prev,
|
x += container_of(ec->base.output_list.prev,
|
||||||
struct wlsc_output,
|
struct weston_output,
|
||||||
link)->current->width;
|
link)->current->width;
|
||||||
} else {
|
} else {
|
||||||
wfdDestroyPort(ec->dev, port);
|
wfdDestroyPort(ec->dev, port);
|
||||||
@@ -485,9 +485,9 @@ handle_port_state_change(struct wfd_compositor *ec)
|
|||||||
WFD_EVENT_PORT_ATTACH_STATE);
|
WFD_EVENT_PORT_ATTACH_STATE);
|
||||||
|
|
||||||
if (state) {
|
if (state) {
|
||||||
struct wlsc_output *last_output =
|
struct weston_output *last_output =
|
||||||
container_of(ec->base.output_list.prev,
|
container_of(ec->base.output_list.prev,
|
||||||
struct wlsc_output, link);
|
struct weston_output, link);
|
||||||
|
|
||||||
/* XXX: not yet needed, we die with 0 outputs */
|
/* XXX: not yet needed, we die with 0 outputs */
|
||||||
if (!wl_list_empty(&ec->base.output_list))
|
if (!wl_list_empty(&ec->base.output_list))
|
||||||
@@ -517,7 +517,7 @@ handle_port_state_change(struct wfd_compositor *ec)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (x_offset != 0 || y_offset != 0) {
|
if (x_offset != 0 || y_offset != 0) {
|
||||||
wlsc_output_move(&output->base,
|
weston_output_move(&output->base,
|
||||||
output->base.x - x_offset,
|
output->base.x - x_offset,
|
||||||
output->base.y - y_offset);
|
output->base.y - y_offset);
|
||||||
}
|
}
|
||||||
@@ -559,7 +559,7 @@ on_wfd_event(int fd, uint32_t mask, void *data)
|
|||||||
if (output == NULL)
|
if (output == NULL)
|
||||||
return 1;
|
return 1;
|
||||||
|
|
||||||
wlsc_output_finish_frame(&output->base,
|
weston_output_finish_frame(&output->base,
|
||||||
c->start_time + bind_time);
|
c->start_time + bind_time);
|
||||||
break;
|
break;
|
||||||
case WFD_EVENT_PORT_ATTACH_DETACH:
|
case WFD_EVENT_PORT_ATTACH_DETACH:
|
||||||
@@ -573,11 +573,11 @@ on_wfd_event(int fd, uint32_t mask, void *data)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
wfd_destroy(struct wlsc_compositor *ec)
|
wfd_destroy(struct weston_compositor *ec)
|
||||||
{
|
{
|
||||||
struct wfd_compositor *d = (struct wfd_compositor *) ec;
|
struct wfd_compositor *d = (struct wfd_compositor *) ec;
|
||||||
|
|
||||||
wlsc_compositor_shutdown(ec);
|
weston_compositor_shutdown(ec);
|
||||||
|
|
||||||
udev_unref(d->udev);
|
udev_unref(d->udev);
|
||||||
|
|
||||||
@@ -591,14 +591,14 @@ wfd_destroy(struct wlsc_compositor *ec)
|
|||||||
/* FIXME: Just add a stub here for now
|
/* FIXME: Just add a stub here for now
|
||||||
* handle drm{Set,Drop}Master in owfdrm somehow */
|
* handle drm{Set,Drop}Master in owfdrm somehow */
|
||||||
static void
|
static void
|
||||||
vt_func(struct wlsc_compositor *compositor, int event)
|
vt_func(struct weston_compositor *compositor, int event)
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
static const char default_seat[] = "seat0";
|
static const char default_seat[] = "seat0";
|
||||||
|
|
||||||
static struct wlsc_compositor *
|
static struct weston_compositor *
|
||||||
wfd_compositor_create(struct wl_display *display,
|
wfd_compositor_create(struct wl_display *display,
|
||||||
int connector, const char *seat, int tty)
|
int connector, const char *seat, int tty)
|
||||||
{
|
{
|
||||||
@@ -646,7 +646,7 @@ wfd_compositor_create(struct wl_display *display,
|
|||||||
glBindFramebuffer(GL_FRAMEBUFFER, ec->base.fbo);
|
glBindFramebuffer(GL_FRAMEBUFFER, ec->base.fbo);
|
||||||
|
|
||||||
/* Can't init base class until we have a current egl context */
|
/* Can't init base class until we have a current egl context */
|
||||||
if (wlsc_compositor_init(&ec->base, display) < 0)
|
if (weston_compositor_init(&ec->base, display) < 0)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
if (create_outputs(ec, connector) < 0) {
|
if (create_outputs(ec, connector) < 0) {
|
||||||
@@ -666,10 +666,10 @@ wfd_compositor_create(struct wl_display *display,
|
|||||||
return &ec->base;
|
return &ec->base;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct wlsc_compositor *
|
struct weston_compositor *
|
||||||
backend_init(struct wl_display *display, char *options);
|
backend_init(struct wl_display *display, char *options);
|
||||||
|
|
||||||
WL_EXPORT struct wlsc_compositor *
|
WL_EXPORT struct weston_compositor *
|
||||||
backend_init(struct wl_display *display, char *options)
|
backend_init(struct wl_display *display, char *options)
|
||||||
{
|
{
|
||||||
int connector = 0, i;
|
int connector = 0, i;
|
||||||
|
|||||||
+3
-2
@@ -77,8 +77,9 @@ read_func(png_structp png, png_bytep data, png_size_t size)
|
|||||||
}
|
}
|
||||||
|
|
||||||
WL_EXPORT uint32_t *
|
WL_EXPORT uint32_t *
|
||||||
wlsc_load_image(const char *filename,
|
weston_load_image(const char *filename,
|
||||||
int32_t *width_arg, int32_t *height_arg, uint32_t *stride_arg)
|
int32_t *width_arg, int32_t *height_arg,
|
||||||
|
uint32_t *stride_arg)
|
||||||
{
|
{
|
||||||
png_struct *png;
|
png_struct *png;
|
||||||
png_info *info;
|
png_info *info;
|
||||||
|
|||||||
Reference in New Issue
Block a user