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

  1. 2021.12.02 wayland 와 weston 문서
  2. 2021.11.29 wayland
  3. 2021.11.26 weston shell
  4. 2021.11.25 weston_log()
  5. 2021.11.24 wayland weston 구조
  6. 2021.11.22 wayland weston flow
  7. 2021.11.18 wayland / weston
  8. 2021.11.17 wayland weston
프로그램 사용/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 구차니