blob: 36254fed06206a7fc3cccdb1ca7b286638bb734c [file] [log] [blame]
/*
* Copyright © 2019 Collabora, Ltd.
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice (including the
* next paragraph) shall be included in all copies or substantial
* portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
#include "config.h"
#include <assert.h>
#include <stdint.h>
#include <unistd.h>
#include <sys/types.h>
#include <libweston/libweston.h>
#include "aml-config-server-protocol.h"
#include "libweston-internal.h"
static void
aml_config_destroy_resource(struct wl_client *client,
struct wl_resource *global_resource)
{
wl_resource_destroy(global_resource);
}
static const struct aml_config_interface
aml_config_interface_v1 = {
aml_config_destroy_resource
};
static void
bind_aml_config(struct wl_client *client, void *data,
uint32_t version, uint32_t id)
{
struct wl_resource *resource;
struct weston_compositor *ec = data;
resource = wl_resource_create(client,
&aml_config_interface,
version, id);
if (!resource) {
wl_client_post_no_memory(client);
return;
}
wl_resource_set_implementation(resource,
&aml_config_interface_v1,
ec, NULL);
const char* aml_config_list = "set_video_plane, keep_last_frame, set_display_rate, surface_destroy_cb";
aml_config_send_aml_config_list(resource, aml_config_list);
}
WL_EXPORT int
aml_config_setup(struct weston_compositor *ec)
{
if (!wl_global_create(ec->wl_display,
&aml_config_interface, 1,
ec, bind_aml_config))
return -1;
return 0;
}