Re: Wayland, weston and Qt

2013-07-16 Thread Jørgen Lind
Make sure your using the 1.1 branch of Wayland and Weston, and the stable branch of QtWayland. By default when you compile QtWayland it will just provide you with a QPA plugin which will allow you to run Qt applications inside a Wayland compositor. QtWayland also contains apis to simplify creating

Re: XRender

2012-09-21 Thread Jørgen Lind
You can rasterize a glyph with freetype, then you can depending on the surface you want to draw into either upload your glyph into some texture glyph cache and then "blit" the texture into some gl surface, or if your working on a main memory surface, you can use some "raster painter" abstraction an

Re: Q: xwayland overt Qt-compositor?

2012-08-22 Thread Jørgen Lind
Hi JørgenOn Wed, Aug 22, 2012 at 07:17:13PM +, ext jegde jedge wrote: > Thanks everybody. > I ran into a few blocks trying to build qtwayland/src/plugins/platform/wayland Thats not good :( > I have to keep two separate libxkbcommon's around one for weston and > one for qt5. > weston will no

Re: Q: xwayland overt Qt-compositor?

2012-08-21 Thread Jørgen Lind
Hi, On Tue, Aug 21, 2012 at 09:15:54AM -0400, ext jegde jedge wrote: > Please forgive the 'user' post in a devel list. > > I am porting a fundamentally Qt system but still need some X backward > compatability? > > I am unclear of the Qt/X/Weston/Wayland interoperability. > > Does the weston com

Re: A barebone version of Weston?

2012-07-12 Thread Jørgen Lind
Hi Mikalai On 12 July 2012 08:03, Mikalai Kisialiou wrote: > Juan, Jonas and Christopher, > > I appreciate your feedback! Small additions to shells are indeed not a > problem. It was not a right example to make my point. As it is now, Weston > can be considered barebone since the code base is sma

Thread affinity again

2012-05-10 Thread Jørgen Lind
Hi guys. I have implemented a proposal for thread affinity for libwayland-client. By this I mean that proxies belong to threads. So events will be dispatched in the thread that created the proxy. Obviously proxies can be moved between threads if that is desired. As a side-effect I also implement

Re: Thread affinity

2012-03-11 Thread Jørgen Lind
Thanks for taking your time to look at the patch :) > Code is copy-pasted back in (why attach?), so it will probably look > weird and the reply-to markers are missing. Looks fine to me. > @@ -212,6 +220,14 @@ wl_proxy_marshal(struct wl_proxy *proxy, uint32_t > opcode, ...) > wl_clos

Thread affinity

2012-03-05 Thread Jørgen Lind
Hi, I had some time today update the patch to add thread affinity to wayland-clients wl_display. Jørgen >From eca8c247e18c66d691aa07fc16cbaa9ea1e5e843 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B8rgen=20Lind?= Date: Mon, 5 Mar 2012 12:44:37 +0100 Subject: [PATCH] Add thread affinity to waylan

Thread affinity and wl_display_iterate

2012-02-10 Thread Jørgen Lind
as created on. This makes it possible to figure out if wl_display_iterate can be safely called. Reviewed-By: Jørgen Lind --- src/Makefile.am |2 + src/wayland-client.c | 94 ++--- src/wayland-client.h |5 +++ 3 files changed, 95 insertions(+)