- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
当我尝试在线教程中的 wayland 代码时,它工作正常,并且在下面的代码中 *pixel++ = 0xffff;
行显示段错误,
static void
paint_pixels_A(void *temp_data) {
int n;
uint32_t *pixel = temp_data;
fprintf(stderr, "Painting pixels\n");
for (n =0; n < WIDTH*HEIGHT; n++) {
*pixel++ = 0xffff;
}
}
我对这段代码所做的修改,
static struct wl_buffer *
create_buffer() {
struct wl_shm_pool *pool;
int stride = WIDTH * 4; // 4 bytes per pixel
int size = stride * HEIGHT;
int fd;
struct wl_buffer *buff;
fd = os_create_anonymous_file(size);
if (fd < 0) {
fprintf(stderr, "creating a buffer file for %d B failed: %m\n",
size);
exit(1);
}
shm_data = mmap(NULL, size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
if (shm_data == MAP_FAILED) {
close(fd);
exit(1);
}
pool = wl_shm_create_pool(shm, fd, size);
buff = wl_shm_pool_create_buffer(pool, 0,
WIDTH, HEIGHT,
stride,
WL_SHM_FORMAT_XRGB8888);
wl_shm_pool_destroy(pool);
return buff;
}
我将上面的代码行修改为
static struct wl_buffer *
create_buffer(void *temp_data) { // modification 1
struct wl_shm_pool *pool;
int stride = WIDTH * 4;
int size = stride * HEIGHT;
int fd;
struct wl_buffer *buff;
fd = os_create_anonymous_file(size);
if (fd < 0) {
fprintf(stderr, "creating a buffer file for %d B failed: %m\n",
size);
exit(1);
}
temp_data = mmap(NULL, size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0); //modification 2
if (temp_data == MAP_FAILED) {
close(fd);
exit(1);
}
pool = wl_shm_create_pool(shm, fd, size);
buff = wl_shm_pool_create_buffer(pool, 0,
WIDTH, HEIGHT,
stride,
WL_SHM_FORMAT_XRGB8888)
wl_shm_pool_destroy(pool);
return buff;
}
以及相应的函数调用,你可以在这个 link 中看到正确的代码这是我的全部代码,请检查并提供反馈
struct wl_display *display = NULL;
struct wl_compositor *compositor = NULL;
struct wl_surface *surface;
struct wl_shell *shell;
struct wl_shell_surface *shell_surface;
struct wl_shm *shm;
struct wl_buffer *buffer;
void *shm_data;
int WIDTH = 480;
int HEIGHT = 360;
static void
handle_ping(void *data, struct wl_shell_surface *shell_surface,
uint32_t serial)
{
wl_shell_surface_pong(shell_surface, serial);
}
static void
handle_configure(void *data, struct wl_shell_surface *shell_surface,
uint32_t edges, int32_t width, int32_t height)
{
}
static void
handle_popup_done(void *data, struct wl_shell_surface *shell_surface)
{
}
static const struct wl_shell_surface_listener shell_surface_listener = {
handle_ping,
handle_configure,
handle_popup_done
};
static int
set_cloexec_or_close(int fd)
{
long flags;
if (fd == -1)
return -1;
flags = fcntl(fd, F_GETFD);
if (flags == -1)
goto err;
if (fcntl(fd, F_SETFD, flags | FD_CLOEXEC) == -1)
goto err;
return fd;
err:
close(fd);
return -1;
}
static int
create_tmpfile_cloexec(char *tmpname)
{
int fd;
#ifdef HAVE_MKOSTEMP
fd = mkostemp(tmpname, O_CLOEXEC);
if (fd >= 0)
unlink(tmpname);
#else
fd = mkstemp(tmpname);
if (fd >= 0) {
fd = set_cloexec_or_close(fd);
unlink(tmpname);
}
#endif
return fd;
}
int
os_create_anonymous_file(off_t size)
{
static const char template[] = "/weston-shared-XXXXXX";
const char *path;
char *name;
int fd;
path = getenv("XDG_RUNTIME_DIR");
if (!path) {
errno = ENOENT;
return -1;
}
name = malloc(strlen(path) + sizeof(template));
if (!name)
return -1;
strcpy(name, path);
strcat(name, template);
fd = create_tmpfile_cloexec(name);
free(name);
if (fd < 0)
return -1;
if (ftruncate(fd, size) < 0) {
close(fd);
return -1;
}
return fd;
}
static void
paint_pixels_A(void *temp_data) {
int n;
uint32_t *pixel = temp_data;
fprintf(stderr, "Painting pixels\n");
for (n =0; n < WIDTH*HEIGHT; n++) {
*pixel++ = 0xffff;
}
}
static struct wl_buffer *
create_buffer(void *temp_data) {
struct wl_shm_pool *pool;
int stride = WIDTH * 4; // 4 bytes per pixel
int size = stride * HEIGHT;
int fd;
struct wl_buffer *buff;
fd = os_create_anonymous_file(size);
if (fd < 0) {
exit(1);
}
temp_data = mmap(NULL, size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
if (temp_data == MAP_FAILED) {
fprintf(stderr, "mmap failed: %m\n");
close(fd);
exit(1);
}
pool = wl_shm_create_pool(shm, fd, size);
buff = wl_shm_pool_create_buffer(pool, 0,
WIDTH, HEIGHT,
stride,
WL_SHM_FORMAT_XRGB8888);
wl_shm_pool_destroy(pool);
return buff;
}
static void
create_window() {
buffer = create_buffer((void *)shm_data);
wl_surface_attach(surface, buffer, 0, 0);
wl_surface_commit(surface);
}
static void
shm_format(void *data, struct wl_shm *wl_shm, uint32_t format)
{
fprintf(stderr, "Format %d\n", format);
}
struct wl_shm_listener shm_listener = {
shm_format
};
static void
global_registry_handler(void *data, struct wl_registry *registry, uint32_t id,
const char *interface, uint32_t version)
{
if (strcmp(interface, "wl_compositor") == 0) {
compositor = wl_registry_bind(registry,
id,
&wl_compositor_interface,
1);
} else if (strcmp(interface, "wl_shell") == 0) {
shell = wl_registry_bind(registry, id,
&wl_shell_interface, 1);
} else if (strcmp(interface, "wl_shm") == 0) {
shm = wl_registry_bind(registry, id,
&wl_shm_interface, 1);
wl_shm_add_listener(shm, &shm_listener, NULL);
}
}
static void
global_registry_remover(void *data, struct wl_registry *registry, uint32_t id)
{
printf("Got a registry losing event for %d\n", id);
}
static const struct wl_registry_listener registry_listener = {
global_registry_handler,
global_registry_remover
};
int main(int argc, char **argv) {
int checker;
display = wl_display_connect(NULL);
if (display == NULL) {
exit(1);
}
struct wl_registry *registry = wl_display_get_registry(display);
wl_registry_add_listener(registry, ®istry_listener, NULL);
wl_display_dispatch(display);
wl_display_roundtrip(display);
if (compositor == NULL) {
exit(1);
}
surface = wl_compositor_create_surface(compositor);
if (surface == NULL) {
exit(1);
}
shell_surface = wl_shell_get_shell_surface(shell, surface);
if (shell_surface == NULL) {
exit(1);
}
wl_shell_surface_set_toplevel(shell_surface);
wl_shell_surface_add_listener(shell_surface,
&shell_surface_listener, NULL);
create_window();
paint_pixels_A((void *)shm_data);
while (wl_display_dispatch(display) != -1) {
;
}
wl_display_disconnect(display);
exit(0);
}
最佳答案
您永远不会分配 shm_data
。
这个:
buffer = create_buffer((void *)shm_data);
不改变shm_data
。此外,您几乎不需要在 C 中转换为 void *
,所以不要那样做。
那一行应该是:
shm_data = create_buffer();
当然 create_buffer()
应该更改为不采用伪参数,只需返回指向 mmap()
ed 区域的指针。
关于c - 我的 Wayland 共享内存代码发现了一个段错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26755041/
我想网络上并没有“wayland 服务器编程初学者指南”,而 weston 的源代码看起来令人望而生畏。 是否有一个准系统 Wayland 服务器可以让我了解从哪里开始?我可以在 X 下运行我可以确认
显然这不是核心 Wayland 协议(protocol)的一部分,但我正在使用 Weston 并且 xdg-shell 扩展似乎有必要的方法: xdg_surface_set_window_geome
我正在做一个基于这个例子https://gitlab.gnome.org/-/snippets/39的项目。我更改了此函数:。对此:。根据XDG文档和对OBS Studio源代码的一些浏览,我现在应该
我有两个属于同一个 Wayland 显示的 EGL 窗口。 Windows 仅全屏显示。鼠标和键盘事件进入显示屏。如何判断事件属于哪个窗口? 在我看来,似乎是在 Wayland TOPLEVEL 窗口
有什么方法可以在 Wayland 中获取指针(鼠标)坐标,AFAIK Wayland 不允许在应用程序窗口外获取指针位置。 跟踪手势指针坐标的守护进程怎么样。 我有点想为 gnome Wayland
我使用 sway 合成器。 当我在控制台中更改用户时,我无法显示 wayland 图形界面(它适用于 X 应用程序) $ su - otherUser $ ./myApplicationWayland
我最近在我的开发笔记本电脑上安装了 Ubuntu 22.04 LTS。以前我运行的是 18.04,所以这是我第一次体验 Wayland。我在新光盘上进行了全新安装。我在重新安装 gitkraken 和
我见过这个问题:Can't a Wayland compositor do the window decorations like on X? ,但我想知道这个: 假设我使用纯 wayland 编写了
Wayland 中有剪贴板 API 之类的东西吗?或者我应该在哪里以编程方式将内容粘贴到剪贴板? 我在 Wayland 上运行 Fedora 24。 如果我觉得有一个剪贴板完全没问题,那么有代码示例(
当我尝试在线教程中的 wayland 代码时,它工作正常,并且在下面的代码中 *pixel++ = 0xffff; 行显示段错误, static void paint_pixels_A(void *t
如何使用新的默认显示服务器 Wayland 在 Ubuntu 17.10 上枚举桌面上的所有顶级窗口(并进一步获取其标题和其他属性)? 之前我们使用 X11/XLib 来实现这一点,但现在有了 Way
是否有将现有 WM 从 X11 移植到 Wayland 的示例?例如,将轻量级 WM(例如 dwm 、 wmii 、 awesome )移植到 Wayland。也许,移植 dwm到wayland 就是
我正在使用 Qt 并想检查是否有任何 Wayland session 正在运行。 现在我有这个只是用于测试代码,它按预期工作: QProcess process; process.setProgram
由于项目限制,我必须使用Wayland ver1.0.3。我将使用 Wayland 在嵌入式系统上开发应用程序。我不知道这个Wayland版本是否支持触摸操作,是否可以管理多窗口。desktop-sh
Wayland 服务器何时会 ping 客户端以检查它是否正在接收事件? 最佳答案 Wayland 服务器可以随时 ping,因此这取决于实现。它很可能会在它认为客户端应该确认事件的任何时候这样做。
所以我意识到这是一个似乎存在争议的问题。我听说人们对 Wayland 将有客户端窗口装饰感到不安,我恰好同意。这听起来根本不是个好主意。但是切换到 Wayland 的好处之一不是它更灵活吗?我不明白为
我想在我的系统中包含 Java GUI 支持,它只支持 Wayland 后端。我试图包含 OpenJDK-7-jre 包,但它似乎具有 X11 依赖性。我成功编译了“Openjre-8”包并包含在我的
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 这个问题似乎不是关于 a specific programming problem, a softwar
我从我的网络接收到 xy 数据,我想在 wayland 上使用 linux 控制鼠标位置。 我见过许多使用 X 库或 X 应用程序的源代码,但它无法在 Wayland 上运行。我也查看了 libinp
背景:我正在开发一款名为 ActivityWatch 的软件。记录您在计算机上所做的事情。基本上是尝试解决以下问题:RescueTime、selfspy、arbtt 等。 我们所做的核心工作之一是记录
我是一名优秀的程序员,十分优秀!