'프로그램 사용/wayland'에 해당되는 글 39건

  1. 2021.12.02 wayland screen share
  2. 2021.12.02 wayland 와 weston 문서
  3. 2021.11.29 wayland
  4. 2021.11.26 weston shell
  5. 2021.11.25 weston_log()
  6. 2021.11.24 wayland weston 구조
  7. 2021.11.22 wayland weston flow
  8. 2021.11.18 wayland / weston
  9. 2021.11.17 wayland weston
프로그램 사용/wayland2021. 12. 2. 17:16

RDP로 공유하는 방법이 기본예제로 구현되어 있나?

 

[링크 : https://manpages.ubuntu.com/manpages/focal/en/man5/weston.ini.5.html#screen-share%20section]

[링크 : https://community.nxp.com/t5/i-MX-Processors/i-MX8-How-to-share-screen-on-Weston/td-p/1333875]

 

+ 2021.12.03

rpi3b 에서 64bit로 깔고 시도하는데 이것저것 조합해서 해보는데 영 안된다.

패키지는 아래가 필요할 것 같아서 설치했고

$ sudo apt-cache search freerdp
freerdp2-wayland - RDP client for Windows Terminal Services (wayland client)

 

실행은 아래의 명령어로 하고, 기본 weston.ini는 /usr/share/doc/weston/examples/weston.ini 에서 복사해 옴.

$ weston --log=/home/pi/weston.log --config=/home/pi/.config/weston.ini --modules=screen-share.so --backend=fbdev-backend.so

 

에러나는대로 그대로 나네..

[11:54:41.823] Screen share failed: No wl_shm found
[11:54:41.823] unknown child process exited

 

parent.shm이 NULL 이면 뜬다는데 저건 또 어디서 생성하게 해야하나...

if (so->parent.shm == NULL) {
weston_log("Screen share failed: No wl_shm found\n");
goto err_display;
}

[링크 : https://coral.googlesource.com/weston-imx/+/refs/heads/release-chef/compositor/screen-share.c]

'프로그램 사용 > wayland' 카테고리의 다른 글

weston-image 와 cairo  (0) 2021.12.08
rpi3b 64bit weston  (0) 2021.12.03
wayland 와 weston 문서  (0) 2021.12.02
wayland  (0) 2021.11.29
weston shell  (0) 2021.11.26
Posted by 구차니
프로그램 사용/wayland2021. 12. 2. 15:39

'프로그램 사용 > wayland' 카테고리의 다른 글

rpi3b 64bit weston  (0) 2021.12.03
wayland screen share  (0) 2021.12.02
wayland  (0) 2021.11.29
weston shell  (0) 2021.11.26
weston_log()  (0) 2021.11.25
Posted by 구차니
프로그램 사용/wayland2021. 11. 29. 23:01

아오 터치가 왜 안돼야 ㅠㅜ

'프로그램 사용 > wayland' 카테고리의 다른 글

wayland screen share  (0) 2021.12.02
wayland 와 weston 문서  (0) 2021.12.02
weston shell  (0) 2021.11.26
weston_log()  (0) 2021.11.25
wayland weston 구조  (0) 2021.11.24
Posted by 구차니
프로그램 사용/wayland2021. 11. 26. 22:41

compositor 보긴싫어 ㅠ

'프로그램 사용 > wayland' 카테고리의 다른 글

wayland 와 weston 문서  (0) 2021.12.02
wayland  (0) 2021.11.29
weston_log()  (0) 2021.11.25
wayland weston 구조  (0) 2021.11.24
wayland weston flow  (0) 2021.11.22
Posted by 구차니
프로그램 사용/wayland2021. 11. 25. 12:41

엔터는 쳐줘야 깔끔하게 나온다 -_ㅠ

(작성자가 \n 안넣어줘서 개판인 로그를 보았다는 결론)

 

[링크 : https://wayland.pages.freedesktop.org/weston/toc/libweston/log.html#_CPPv410weston_logPKcz]

 

+

23.10.18

로그를 위해 무언가를 설정은 해주어야 하는 듯..

weston_log_set_handler() must be called before using of weston_log().

'프로그램 사용 > wayland' 카테고리의 다른 글

wayland  (0) 2021.11.29
weston shell  (0) 2021.11.26
wayland weston 구조  (0) 2021.11.24
wayland weston flow  (0) 2021.11.22
wayland / weston  (0) 2021.11.18
Posted by 구차니
프로그램 사용/wayland2021. 11. 24. 15:17

레이어 / 뷰

[링크 : https://www.kernelpanic.kr/10]

'프로그램 사용 > wayland' 카테고리의 다른 글

weston shell  (0) 2021.11.26
weston_log()  (0) 2021.11.25
wayland weston flow  (0) 2021.11.22
wayland / weston  (0) 2021.11.18
wayland weston  (0) 2021.11.17
Posted by 구차니
프로그램 사용/wayland2021. 11. 22. 18:02

'프로그램 사용 > wayland' 카테고리의 다른 글

weston shell  (0) 2021.11.26
weston_log()  (0) 2021.11.25
wayland weston 구조  (0) 2021.11.24
wayland / weston  (0) 2021.11.18
wayland weston  (0) 2021.11.17
Posted by 구차니
프로그램 사용/wayland2021. 11. 18. 13:48

 

static const struct android_wlegl_handle_interface server_handle_impl = {
add_fd,
destroy
};

server_wlegl_handle *
server_wlegl_handle_create(uint32_t id)
{
server_wlegl_handle *handle = new server_wlegl_handle;

memset(handle, 0, sizeof(*handle));

handle->resource.object.id = id;
handle->resource.object.interface = &android_wlegl_handle_interface;
handle->resource.object.implementation =
(void (**)(void))&server_handle_impl;

handle->resource.destroy = server_wlegl_handle_dtor;
handle->resource.data = handle;

wl_array_init(&handle->ints);
wl_array_init(&handle->fds);

return handle;
}

[링크 : https://github.com/libhybris/libhybris/blob/master/hybris/egl/platforms/common/server_wlegl_handle.cpp]

 

extern const struct wl_interface android_wlegl_handle_interface;

[링크 : https://github.com/groleo/simple-yuv/blob/master/wayland-android-client-protocol.h]

'프로그램 사용 > wayland' 카테고리의 다른 글

weston shell  (0) 2021.11.26
weston_log()  (0) 2021.11.25
wayland weston 구조  (0) 2021.11.24
wayland weston flow  (0) 2021.11.22
wayland weston  (0) 2021.11.17
Posted by 구차니
프로그램 사용/wayland2021. 11. 17. 18:21

'프로그램 사용 > wayland' 카테고리의 다른 글

weston shell  (0) 2021.11.26
weston_log()  (0) 2021.11.25
wayland weston 구조  (0) 2021.11.24
wayland weston flow  (0) 2021.11.22
wayland / weston  (0) 2021.11.18
Posted by 구차니