Re: "hosted" patch for nouveau - X under wayland

2010-12-02 Thread Darxus
On 12/02, nerdopolis wrote: > > And a patch to the X.org video driver, here: > > http://cgit.freedesktop.org/~krh/xf86-video-intel/log/?h=hosted > I am trying to test the hosted x server (on intel) > (EE) Failed to load module "intel" (module does not exist, 0) You need to build and install the

Re: Wayland in N900

2010-12-17 Thread Darxus
On 12/17, Esa Törmikoski wrote: > On 12/16/2010 11:06 AM, Sami Kyöstilä wrote: > >problem is there's no way to share EGLImages across processes in that > Doomed right in the start :( Need to find some other topic for > thesis work then if this is impossible.. Ask Nokia to implement EGLImage shar

My understanding of Wayland

2010-12-17 Thread Darxus
I've seen and participated in a fair amount of Wayland related confusion, so I started writing stuff up. Please tell me where I'm wrong, and elaborate where you can. (Also at http://www.chaosreigns.com/wayland/ ) --- Ubuntu'

A simpler description of wayland

2010-12-21 Thread Darxus
The X server contains lots and lots of crufty old code going back to the 1980s that nobody uses and nobody (including the X developers) wants to maintain, but is required to claim to be an X server. One option is: 1) Move all the useful modern stuff out to the Linux kernel and separate librarie

Re: A simpler description of wayland

2010-12-21 Thread Darxus
On 12/22, Josh Leverette wrote: > No? wayland is a very separate project. It is not backwards compatible > with X. It will run X programs in a copy of X. Nobody is panicking > anyways. Yes, Wayland is a distinct project from X.org, but it, and all the work to make it possible, has been done by X d

Re: Can't get the source code of Wayland

2011-01-05 Thread Darxus
$ git clone git://anongit.freedesktop.org/wayland Initialized empty Git repository in /home/darxus/wayland/tmp/wayland/.git/ remote: Counting objects: 2478, done. remote: Compressing objects: 100% (1051/1051), done. remote: Total 2478 (delta 1819), reused 1941 (delta 1422) Receiving objects: 100

wayland + nouveau doesn't work with mesa upstream git since yesterday

2011-01-05 Thread Darxus
https://bugs.freedesktop.org/show_bug.cgi?id=32864 Says "libEGL warning: failed to create DRM screen" instead of "libEGL debug: loaded /home/darxus/install/lib/egl/pipe_nouveau.so" Last working commit: 6a102074bb30e44273e999ee8cdd2afbfbc4e333 Date: Tue Jan 4 07:24:3

GTK multiple backends

2011-01-08 Thread Darxus
Kristian recently posted to his blog about updating his wayland backend for gtk to use the multiple backend support which was very recently merged into gtk, and that he moved it to the gdk-backend-wayland branch of the upstream gtk git repo: http://hoegsberg.blogspot.com/2011/01/multiple-backends-f

Fixed Re: wayland + nouveau doesn't work with mesa upstream git since yesterday

2011-01-08 Thread Darxus
The problem was revealed by: $ LD_DEBUG='all' ~/wayland/wayland/compositor/compositor 2>&1 | grep fatal 27254: /home/darxus/install/lib/egl/pipe_nouveau.so: error: symbol lookup error: undefined symbol: nvc0_screen_create (fatal) Interesting that it didn't result in

[PATCH] Added specific versions to build dependencies.

2011-01-11 Thread Darxus
cairo >= 1.10.0 egl >= 7.10 and gdk-pixbuf-2.0 >= 2.21.5 libudev >= 136 libdrm >= 2.4.23 glib-2.0 >= 2.17.1 --- configure.ac |7 +-- 1 files changed, 5 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 31654a6..e1448ad 100644 --- a/configure.ac +++ b/configure.a

Re: failed to create display: no such file or directory

2011-01-19 Thread Darxus
On 01/19, Kristian Høgsberg wrote: > That's probably just a race condition - the client starts up and tries > to conncet to the socket before the compositor has created it. Try > ./compositor && (sleep 2; terminal) instead. I don't think the compositor will background, so it won't get to terminal

Re: Configure script of mesa is absent.

2011-01-19 Thread Darxus
On 01/20, Ramiro Romero D. wrote: > But the problem is that there is no configure file thus I can't compile > mesa, thus I can't compile wayland Yeah, those instructions are wrong. The git repo doesn't have configure, so you need to run ./autogen.sh instead of ./configure. It seems this is oft

"GL_EXT_texture_format_BGRA8888 not available" is a known problem

2011-01-20 Thread Darxus
I just wanted to post to this list that this is a known problem, currently preventing the demo wayland compositor from working on non-intel video cards. bnf posted a few patches to the mesa mailing list, working on fixing it: http://lists.freedesktop.org/archives/mesa-dev/2011-January/004864.html

Ubuntu build script now also builds pixman / BGRA update

2011-01-23 Thread Darxus
Cairo (git) recently bumped the version of pixman it depends on to something newer than what's in Ubuntu Maverick, so my script is now also building pixman from git: http://www.chaosreigns.com/wayland/ubuntu.html Also, bnf posted another set of (4) patches to the mesa list, which does make wayla

[PATCH] Update build instructions

2011-01-23 Thread Darxus
--- building.html | 129 +++- 1 files changed, 90 insertions(+), 39 deletions(-) diff --git a/building.html b/building.html index c43bef5..58930e0 100644 --- a/building.html +++ b/building.html @@ -8,7 +8,7 @@ - + The instructions belo

[PATCH] Build instructions, add LD_LIBRARY_PATH

2011-01-23 Thread Darxus
--- building.html |5 - 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/building.html b/building.html index 58930e0..c41e01e 100644 --- a/building.html +++ b/building.html @@ -168,12 +168,15 @@ protocol: installed in $HOME/install you will need the following environment v

Re: "GL_EXT_texture_format_BGRA8888 not available" is a known problem

2011-01-25 Thread Darxus
As Ben just alluded to in another thread, yesterday Kristian committed Ben's fix for this problem to mesa git. So to run Wayland on non-Intel video cards, you need Mesa from git at least as new as yesterday. The commits: http://cgit.freedesktop.org/mesa/mesa/commit/?id=f1452844fe2522387bbc6633f2

[PATCH] Replace gdk_pixbuf_unref with g_object_unref

2011-01-25 Thread Darxus
Because gdk_pixbuf_unref is deprecated and for compatability with gdk-pixbuf 2.21.4. --- clients/window.c |8 compositor/compositor.c|4 ++-- compositor/screenshooter.c |4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/clients/window.c b/cli

Video cards that work Re: Wayland and R600?

2011-01-28 Thread Darxus
On 01/25, den...@online.de wrote: > P.S.: How about a list on the webpage of graphic cards known to work with > Wayland (including minimally required kernel / drm / mesa / etc. versions?) Output through X: I think anything with DRI2 working will work, which means Intel, AMD/ATI, Nvidia, using

Re: Video cards that work Re: Wayland and R600?

2011-01-29 Thread Darxus
On 01/28, dar...@chaosreigns.com wrote: > Output through X: > > I think anything with DRI2 working will work, which means Intel, AMD/ATI, > Nvidia, using open source drivers. I don't know how far back. There's I'm going to say, until somebody can provide me with evidence otherwise, that under

Mesa bug causing garbage in wayland terminal client

2011-01-31 Thread Darxus
There is currently a bug in mesa in git causing garbage output from the terminal client. Mesa bug report: https://bugs.freedesktop.org/show_bug.cgi?id=33786 First bad commit: commit 1dd8e2757852682af44b63193c89dff3c09c7703 Author: Brian Paul Date: Fri Jan 28 20:25:27 2011 -0700 st/mesa:

[PATCH] Add favicon.ico to website

2011-02-01 Thread Darxus
Very straightforward conversion from wayland.svg. --- favicon.ico | Bin 0 -> 4286 bytes 1 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 favicon.ico diff --git a/favicon.ico b/favicon.ico new file mode 100644 index ..0f0eb37411ae64c0

Re: Wayland with a intel 865 card

2011-02-03 Thread Darxus
On 02/03, Daniel wrote: > Is it at all possible to run Wayland using an Intel 82865G integrated > card? My guess is "No." Without X, the only video cards that work with Wayland are Intel i915 (2004) and newer. Inside X, the best info I have is from Brice: i945 works, i915 should work. The main

Re: [PATCH] - Add the wayland-build.sh script to building.html and to the directory

2011-02-06 Thread Darxus
On 02/06, Chris Morgan wrote: > Is this the right mailing list for patches? I didn't see a separate > patches list. This is where I posted my patches to the website which got applied. Kristian is unresponsive sometimes. (And, it looks like, the only one committing to wayland-web.) ___

New build requirements related to wayland-egl

2011-02-07 Thread Darxus
Requirements for building wayland changed today as support for the wayland egl platform in mesa was added. You kind of need to build both mesa and wayland twice, due to them now depending on each other. It sounds like this will be fixed by splitting the wayland repo into two repos, presumably one

[PATCH] Update build instructions for new wayland-egl dependencies.

2011-02-07 Thread Darxus
--- building.html | 48 +--- 1 files changed, 37 insertions(+), 11 deletions(-) diff --git a/building.html b/building.html index 446e780..48d5837 100644 --- a/building.html +++ b/building.html @@ -37,22 +37,24 @@ LIBRARY_PATH=$HOME/install/lib Mode

[PATCH] Build instructions: Add mesa make realclean.

2011-02-08 Thread Darxus
make realclean before second mesa build so stuff required for wayland egl platform gets rebuilt. --- building.html |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/building.html b/building.html index 48d5837..dcf06f9 100644 --- a/building.html +++ b/building.html @@ -146,6

Wayland doesn't work outside of X with nouveau, and it should

2011-02-13 Thread Darxus
At this point wayland should work with nouveau, but it doesn't. Page flip for NV50 and NVC0 cards was added to nouveau on the 9th http://www.phoronix.com/scan.php?page=news_item&px=OTA5Nw (Mine is NV50.) This was the last known missing dependency. I built a kernel from the nouveau git repo on the

[PATCH] Print compositor output method (X11/DRM/Wayland)

2011-02-13 Thread Darxus
--- compositor/compositor.c | 12 +--- 1 files changed, 9 insertions(+), 3 deletions(-) diff --git a/compositor/compositor.c b/compositor/compositor.c index 535b3f1..5bd3454 100644 --- a/compositor/compositor.c +++ b/compositor/compositor.c @@ -1306,18 +1306,24 @@ int main(int argc, cha

[PATCH] Update build instructions - don't need Gallium EGL driver anymore

2011-02-13 Thread Darxus
The mess of mesa build flags had been due to the Gallium EGL driver not working with Intel, while being required by Nouveau. Thanks to Dave Airlie, as of today, Nouveau no-longer requires Gallium EGL and can use DRI2 EGL. ATI/AMD has been able to for a while. So we should be able to substantiall

[PATCH] Build instructions - the Wayland git repo has been split.

2011-02-16 Thread Darxus
The repo has been split into http://cgit.freedesktop.org/wayland/wayland/ for the libraries and http://cgit.freedesktop.org/wayland/wayland-demos/ for the demo applications (compositor, terminal, flower, etc.) so that Mesa no longer needs to be built twice. This updates the build instructions for

[PATCH] Build instructions - update a cd command

2011-02-16 Thread Darxus
--- building.html |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/building.html b/building.html index ac2bd34..f1a9ab8 100644 --- a/building.html +++ b/building.html @@ -140,7 +140,7 @@ libudev, libdrm, xcb-dri2, xcb-fixes (for X compositor) cairo-gl, glib-2.0, gdk-2.0

Wayland works outside of X on ATI/AMD and Nvidia

2011-02-16 Thread Darxus
Ben Franzke worked out the final pieces. Both require the use of open source drivers. For ATI, it looks like you need a 2.6.38 kernel to get page flip support. Nvidia needs a kernel built from the Nouveau git repo, and an additional patch: http://lists.freedesktop.org/archives/nouveau/2011-Feb

Re: Wayland works outside of X on ATI/AMD and Nvidia

2011-02-16 Thread Darxus
On 02/17, dar...@chaosreigns.com wrote: > need a 2.6.38 kernel to get page flip support. Nvidia needs a kernel > built from the Nouveau git repo, and an additional patch: That just got committed, so you can skip the patching steps in my instructions, which leaves: git clone --depth 1 git://ano

Re: [wayland] building: Clarify after the split into wayland and wayland-demos repos

2011-02-17 Thread Darxus
On 02/17, Sedat Dilek wrote: > unfortunately, the wayland-website (building) does not have updated > informations on how to build after the split of > 1. wayland core [1] > 2. wayland libs and demos [2] > > Can someone please enlighten on this? I did, but it hasn't been committed: Date: Wed, 16

[PATCH] Build instructions: Add Nouveau kernel build instructions

2011-02-17 Thread Darxus
--- building.html | 22 ++ 1 files changed, 22 insertions(+), 0 deletions(-) diff --git a/building.html b/building.html index f1a9ab8..f974270 100644 --- a/building.html +++ b/building.html @@ -199,5 +199,27 @@ LIBGL_DEBUG=verbose WAYLAND_DEBUG=1 +Nouveau Kernel + +To u

[PATCH][web] Building: Replace Modesetting with more detailed and current Hardware / Drivers

2011-02-17 Thread Darxus
--- building.html | 25 + 1 files changed, 17 insertions(+), 8 deletions(-) diff --git a/building.html b/building.html index f974270..8a53036 100644 --- a/building.html +++ b/building.html @@ -21,6 +21,23 @@ below, but you can use your favorite directory of course or in

[PATCH][web] Minor fixes and logo linking to main page

2011-02-17 Thread Darxus
Fix 1 html validator error, a few warnings, and make the Wayland logo link to the main page. Did you know you're not supposed to put an directly in a in HTML 4.01 Strict? --- architecture.html |8 building.html |2 +- faq.html |2 +- index.html|2 +

[PATCH 1/2][web] Convert to XHTML 1.1

2011-02-17 Thread Darxus
May be served as text/html, so doesn't break any browsers. Only changes are closing meta, link, img, and br tags, and the doctype. --- architecture.html | 14 +++--- building.html | 10 +- faq.html |8 index.html|8 screenshots.ht

[PATCH 2/2] Clarify which kernel building commands are only necessary on Ubuntu

2011-02-17 Thread Darxus
--- building.html |6 +- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/building.html b/building.html index a586b93..768520d 100644 --- a/building.html +++ b/building.html @@ -220,7 +220,11 @@ Nouveau kernel git repository: $ cp /boot/config-`uname -r` .config # use .c

[PATCH][web] Nvidia NVC0 / Fermi cards do not yet work

2011-02-19 Thread Darxus
To get this latest generation of Nvidia cards to work apparently requires loading external firmware for Nouveau. --- building.html |4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/building.html b/building.html index 768520d..b8b7d4c 100644 --- a/building.html +++ b/build

[PATCH][web] Update build dependencies of Wayland demos

2011-02-25 Thread Darxus
--- building.html | 19 +++ 1 files changed, 15 insertions(+), 4 deletions(-) diff --git a/building.html b/building.html index b8b7d4c..796b641 100644 --- a/building.html +++ b/building.html @@ -145,10 +145,21 @@ package for pixman. Wayland applications -With mesa and libxk

[PATCH] Update README with current contents of http://wayland.freedesktop.org/building.html

2011-02-25 Thread Darxus
And one spelling correction. links -dump -width 75 ../wayland-web/building.html Thanks to evil_core for pointing out the need. --- README | 304 +++- 1 files changed, 206 insertions(+), 98 deletions(-) diff --git a/README b/README index

LibreOffice now works natively on wayland

2015-07-21 Thread darxus
The bug was just closed, after three years: https://bugs.documentfoundation.org/show_bug.cgi?id=48903 I think this is a pretty big step. http://caolanm.blogspot.com/2015/07/libreoffice-on-wayland.html ___ wayland-devel mailing list wayland-devel@lists.fr

xwayland + radeon = consistent filesystem corruption Re: I'm the only one getting hard drive errors, right?

2012-09-03 Thread darxus
[732715.730069] EXT4-fs error (device sda1): ext4_ext_search_left:1275: inode #21374007: comm flush-8:0: ix (10742) != EXT_FIRST_INDEX (0) (depth 1)! [732715.730084] Aborting journal on device sda1-8. [732715.730269] EXT4-fs (sda1): Remounting filesystem read-only [732715.730278] EXT4-fs error (de

Re: xwayland + radeon = consistent filesystem corruption Re: I'm the only one getting hard drive errors, right?

2012-09-04 Thread darxus
On 09/04, Michel Dänzer wrote: > On Mon, 2012-09-03 at 15:15 -0400, dar...@chaosreigns.com wrote: > > > > I had the latest get masters of everything as of 2012-09-03 08:36 -0400. > > weston commit 8538b22ff4ad8879b4e3288be053508167562859 > > wayland commit 2be6e0ed142bac669398a9ad26d33fa532

Re: xwayland + radeon = consistent filesystem corruption Re: I'm the only one getting hard drive errors, right?

2012-09-04 Thread darxus
Somebody mentioned I failed to point out here that both of these, three months apart, mention the same inode: On 09/03, dar...@chaosreigns.com wrote: > [732715.730069] EXT4-fs error (device sda1): ext4_ext_search_left:1275: inode > #21374007: comm flush-8:0: ix (10742) != EXT_FIRST_INDEX (0) (dep

Re: xwayland + radeon = consistent filesystem corruption Re: I'm the only one getting hard drive errors, right?

2012-09-04 Thread darxus
): ext4_da_writepages: jbd2_start: 962 pages, ino 21374007; err -30 Same inode again. Which I guess I didn't mention on this list turned out to be a file in chromium's cache: $ sudo find . -inum 21374007 -print ./home/darxus/.cache/chromium/Default/Cache/data_3 Still curious... wtf... but at

Using Weston as my primary UI

2012-09-06 Thread darxus
I switched from X to Weston a couple days ago. The only thing I've needed X for in that time was playing a movie, and thanks to Alexander Preisinger I could've compiled mplayer with native Wayland support instead. Totem mostly works, but I can't get it to go into fullscreen mode (since XWayland m

It's easy to get console / VT output to a file

2012-09-09 Thread darxus
Ran weston on the DRM backend (outside X), it did something weird, and you want to get the output to a file? (And haven't set up gpm in forever?) It's really easy: # setterm -file log.txt -dump 4 Where "4" was the virtual terminal number I wanted the text from. You'll need to run it as root.

Re: new xwayland protocol

2012-09-14 Thread darxus
On 09/14, Pekka Paalanen wrote: > Apparently you have forgot all about, say, dome projectors or virtual > displays, where the output is a half sphere. Good luck mapping Cartesian > global coordinates there in any meaningful way. What coordinate system does that use, if not cartesian? -- "Forget

Re: [PATCH] faq.html: fix typos

2012-09-18 Thread darxus
Done. When using git format-patch or git send-email to send these, you can use "--subject-prefix web" to indicate which repo the patch is for, resulting in, for example: Subject: Re: [PATCH web] faq.html: fix typos On 09/17, Diego Viola wrote: > Could you guys merge this please? > > On Sat, S

Ubuntu Quantal PPA of daily builds

2012-09-29 Thread darxus
https://code.launchpad.net/~darxus/+archive/wayland-daily Source is pulled in from the wayland / weston git masters daily, the debian packaging (debian directory) from the packages in the ubuntu archives are copied in, and they're built, all automatically. When new packages are added t

Re: Will Wayland also ship with broken keyboard layout switching?

2012-10-01 Thread darxus
On 10/02, Фамилия Имя wrote: > switch between different keyboard layouts (languages) using both alt keys. It > was > https://bugs.freedesktop.org/show_bug.cgi?id=4927 This mentions a fix for X would be to switch to xkbcommon. xkbcommon is what weston uses, so it seems likely to not have this pr

Pixman no-longer builds with gcc v4.6.x

2012-10-04 Thread darxus
https://bugs.freedesktop.org/show_bug.cgi?id=55630 Workarounds: 1) Build with the last good commit: 7a9c2d586b2349b5e17966a96d7fe8c390abb75a 2) Upgrade gcc. 3) Build with clang instead of gcc, although that may have other problems. '"export CC=clang" before autogen.sh/configure' 'it's bes

Mesa changes landed upstream Re: Wayland and Weston 0.99.0 snapshots released

2012-10-17 Thread darxus
On 10/15, Kristian Høgsberg wrote: > I have a wayland-0.99 branch here in my mesa repo: > > http://cgit.freedesktop.org/~krh/mesa/log/?h=wayland-0.99 > > that works with the recent API changes and expect to push that > upstream tomorrow to master and hope to ship it in mesa 9.0.1. This is

Re: Compiling xserver for newest wayland

2012-10-24 Thread darxus
Last I heard, there is no branch compatible with wayland 1.0 yet, and Daniel Stone is working on it. GTK's upstream master was recently updated. Qt hasn't been updated. On 10/24, Bill Spitzak wrote: > I get a lot of errors from xwayland.c when compiling the xserver. It > appears to not be update

GTK+ master hasn't been updated for xkbcommon-0.2.0

2012-10-25 Thread darxus
bluetech opened a bug with an attached patch: https://bugzilla.gnome.org/show_bug.cgi?id=686904 -- "The most elementary and valuable statement in science, the beginning of wisdom is: 'I do not know'." - Data, ST:TNG 2x2 Where Silence Has Lease http://www.ChaosReigns.com __

Updated Re: GTK+ master hasn't been updated for xkbcommon-0.2.0

2012-10-29 Thread darxus
On 10/25, dar...@chaosreigns.com wrote: > bluetech opened a bug with an attached patch: > https://bugzilla.gnome.org/show_bug.cgi?id=686904 Committed, GTK+ master now builds with wayland / libxkbcommon git masters. EFL is also up to date. XWayland, Qt, and SDL still haven't been updated since the

Re: Support for complete OpenGL

2012-11-26 Thread darxus
On 11/26, Selva kumar wrote: > I am interested in contributing to wayland to support full OpenGL not > just OpenGLES. where do I start. I have experimented with openGL > libraries a bit. I am a complete newb to wayland. and I know X creates > lots of interdependencies which are not necessary for a

Re: xwayland working again with Wayland 1.0

2012-11-28 Thread darxus
On 11/28, Bill Spitzak wrote: > Which git repository/version should I use for xserver? I believe the directions are up to date: http://wayland.freedesktop.org/xserver.html So repository git://anongit.freedesktop.org/xorg/xserver branch xwayland-1.12 . xwayland-1.12 was updated 21 hours ago. (I

A change in the way xwayland is launched

2012-11-28 Thread darxus
Before wayland 1.0, you launched the xserver stuff by launching weston or weston-launch with a --xserver command line argument. That will now give you "fatal: unhandled option: --xserver". There are two new ways of doing this. 1) Add this to ~/.config/weston.ini: [core] modules=xwayland.so,

Re: SIGBUS on wl_shm clients (Re: Newest git version of Wayland is even worse)

2012-12-08 Thread darxus
On 12/08, Bill Spitzak wrote: > On 12/08/2012 12:23 AM, Pekka Paalanen wrote: > > >FWIW, I have seen a bus error (SIGBUS) before. One way to trigger > >it is to run out of space on the tmpfs, where your XDG_RUNTIME_DIR > >points to. Maybe you should check that? > > > >I think it needs at least 20-

Ubuntu not okay with GTK+ depending on Wayland package

2012-12-17 Thread darxus
Is this a situation that can be improved? - Forwarded message from Iain Lane - Date: Mon, 17 Dec 2012 15:23:10 - From: Iain Lane Subject: [Bug 954352] Re: Enable wayland backend Oh, I'm sorry but this isn't going to be possible. Extra backends get compiled right into GDK. This me

Re: Getting blank screen

2012-12-17 Thread darxus
On 12/18, manish sharma wrote: >I tried compile wayland on my HP-8530w laptop with�NVIDIA Corporation G96M >libEGL warning: DRI2: failed to authenticate Are you trying to do this with the nvidia proprietary driver? -- "All that is necessary for evil to triumph is for good men to do noth

Apparent impass between GTK+ and Ubuntu on Wayland backend

2013-01-05 Thread darxus
Ubuntu said they're not willing to have their GTK+ package depend on a Wayland package (when using GTK+ only with X), requesting the Wayland backend be moved out to a dynamically loadable library: https://bugs.launchpad.net/ubuntu/+source/gtk+3.0/+bug/954352 (Comment 61 on.) GTK+ said "No": https

Wayland GTK+ support is in Ubuntu, Fedora, and Gentoo

2013-01-28 Thread darxus
ich have been ported (from older Qt releases, which is required). There are three workarounds for Ubuntu specific bugs related to using the Wayland backend of GTK+ near the top of https://launchpad.net/~darxus/+archive/wayland-gtk-quantal -- "The most elementary and valuable statement in

Re: xorg.conf sample for xwayland with wlshm DDX.

2013-01-29 Thread darxus
On 01/29, ashjas wrote: >an xorg.conf containing 'Driver "wlshm"' >i am not sure how to put an entry like this in the >$WLD/share/X11/xorg.conf.d/10-evdev.conf conf file.. http://lists.freedesktop.org/archives/wayland-devel/2012-April/003106.html Some stuff in that post is not current

Ubuntu working on their own display server not using wayland

2013-02-03 Thread darxus
http://www.omgubuntu.co.uk/2013/02/canonical-working-on-new-display-server Because wayland "...includes a tonne of functionality that we don’t need and drags us down."? -- "We will be dead soon. Is this how we want to live?" http://www.ChaosReigns.com

The real story behind Wayland and X, presentation by Daniel Stone

2013-02-09 Thread darxus
Video: http://mirror.linux.org.au/linux.conf.au/2013/ogv/The_real_story_behind_Wayland_and_X.ogv Articles about it: http://www.h-online.com/open/news/item/LCA-2013-videos-X-org-s-shortcomings-and-Wayland-1800135.html http://www.phoronix.com/scan.php?page=news_item&px=MTI5NTI It's a great presenta

[PATCH xf86-video-ati] xwayland: Use new DRI2 AuthMagic3

2013-02-11 Thread Darxus
Update for http://cgit.freedesktop.org/xorg/xserver/commit/?h=xwayland-1.12&id=e4566c049c7b385e2307fef3c72ef61762729f42 based on http://cgit.freedesktop.org/xorg/driver/xf86-video-intel/commit/?h=xwayland&id=bb4e7c69349ae1ea6aca36977e0d01bea2966564 --- Patch is for https://github.com/RAOF/xf86-v

[PATCH xf86-video-nouveau] xwayland: Use new DRI2 AuthMagic3

2013-02-11 Thread Darxus
Update for http://cgit.freedesktop.org/xorg/xserver/commit/?h=xwayland-1.12&id=e4566c049c7b385e2307fef3c72ef61762729f42 based on http://cgit.freedesktop.org/xorg/driver/xf86-video-intel/commit/?h=xwayland&id=bb4e7c69349ae1ea6aca36977e0d01bea2966564 --- Patch is for https://github.com/RAOF/xf86-v

Re: [PATCH web] docs: update qt5 documentation

2013-02-28 Thread darxus
Great, thanks, committed. HTML didn't validate, so I corrected that after: http://cgit.freedesktop.org/wayland/wayland-web/commit/?id=bb8b63cf1f5b6e210572d04678adcddebbccfb2b You had a inside a , unquoted url, and an un-escaped "&" (should be "&"). I like http://www.htmlhelp.com/tools/valida

Re: More problems building xserver

2013-03-04 Thread darxus
On 03/03, Bill Spitzak wrote: > Requested 'xtrans >= 1.2.7' but version of XTrans is 1.2.6 What distro has xtrans v. 1.2.6? > No package 'xineramaproto' found The first step, assuming you aren't bent on manually compiling everything from source, is to search for the package from your distro co

Ubuntu announced their own display server project: Mir

2013-03-04 Thread darxus
Not based on X or Wayland. https://wiki.ubuntu.com/MirSpec https://wiki.ubuntu.com/MirSpec#Why_Not_Wayland_.2BAC8_Weston.3F http://www.phoronix.com/scan.php?page=news_item&px=MTMxNzI ___ wayland-devel mailing list wayland-devel@lists.freedesktop.org ht

Non-Intel DDXes need love

2013-03-07 Thread darxus
s come up a few times when talking about this: 09:31 < ickle> such as st/xa or glamor 09:33 < pq> also, http://www.freedesktop.org/wiki/Software/Glamor 21:46 < RAOF> Darxus: Using gbm + glamour? 09:28 < pq> GriffenJBS, no, unless you get your X to work with GLAMOR. 15:4

Totem should now work natively on wayland via gtk

2013-03-08 Thread darxus
- Forwarded message from totem - https://bugzilla.gnome.org/show_bug.cgi?id=672735 totem | Movie player | unspecified Bastien Nocera changed: What|Removed |Added

Wayland / Gnome tracker bug

2013-03-13 Thread darxus
https://bugzilla.gnome.org/show_bug.cgi?id=695806 For keeping track of wayland related bugs in gnome stuff. (See the list of bugs it "depends on".) Good stuff going on in there. -- "This hurts quite a bit. Very painful." "Think of the sensation as reassurance that you are not dead yet. What you

Re: EFL Build Instructions patch

2013-03-14 Thread darxus
Pushed, thanks. (HTML validated.) On 03/14, Christopher Michael wrote: > Hi All :) > > I have attached a patch for the Website which updates the EFL build > instructions. Would greatly appreciate if someone could push this. > > Thank You :) > > devilhorns > From ec7eb776364af720afea6bd3ea905

GTK+ CSD merged upstream today

2013-03-17 Thread darxus
recompiling? 08:22PM < krh> soreau: we're talking about gtk, rigth? 08:22PM < fscan> soreau: isn't it just a css file? 08:22PM < krh> it is, ~/.config/gtk-3.0/gtk.css 08:29PM < krh> Darxus: it got rebased on master, not git merged 08:29PM <

Arch enabled the Wayland backend of GTK+

2013-03-18 Thread darxus
https://www.archlinux.org/packages/extra/x86_64/gtk3/ now lists "wayland" as a dependency, I haven't done any more verifying than that. - Forwarded message from Arch Linux - Date: Mon, 18 Mar 2013 22:42:53 + From: Arch Linux Subject: FS#33577: [gtk3] Enable Wayland backend THIS IS

Why Scott Moreau got kicked out Re: Scott Moreau Banned From Official Wayland IRC Channel

2013-03-26 Thread darxus
ll ping you on IRC to discuss this. Several people have asked you to do it > > and you have either missed the point or failed to explain to us why the fork > > is necessary. Another recent example of how unpleasant Scott was to work with. I strongly suspect this instance of him getting

Re: Why Scott Moreau got kicked out Re: Scott Moreau Banned From Official Wayland IRC Channel

2013-03-26 Thread darxus
On 03/27, RenoX wrote: >While I won't comment about the ban itself, I'm not so sure that this >part: >[1]dar...@chaosreigns.com�wrote: >> The final problem was that, despite his proclamations that he intended to >> keep his forks compatible with wayland, he refused to use the ex

Re: [PATCH web 1/3] gtk: We now have accessors for wl_ data structures

2013-03-27 Thread darxus
Thanks, committed these three. (HTML validated.) On 03/27, Rob Bradford wrote: > From: Rob Bradford > > --- > gtk.html | 4 > 1 file changed, 4 deletions(-) > > diff --git a/gtk.html b/gtk.html > index 70d6b27..6278f10 100644 > --- a/gtk.html > +++ b/gtk.html > @@ -95,10 +95,6 @@ applica

Porting glmark2?

2013-03-29 Thread darxus
://code.launchpad.net/~glmark2-dev/glmark2/trunk Might possibly come in handy: https://blueprints.launchpad.net/ubuntu/+spec/client-1303-mir-glmark2 ("configure glmark2 build with --with-flavor=mir-glesv2") 12:36PM < alf_> Darxus: it should be relatively straightforward to port to wayland,

Re: Porting glmark2?

2013-03-29 Thread darxus
On 03/29, Rafał Mielniczuk wrote: > I did some basic porting, but benchmark shows contant 60FPS. > It looks quite nice, though ;) > > I put the code on github > https://github.com/rafalmiel/glmark2-wl Awesome, thanks. Can you submit it upstream? I wonder if the 60fps thing is as it should be.

Re: Hawaii is usable now

2013-04-01 Thread darxus
So are you actually using this as your primary UI now? The reason I stopped using weston as my primary UI in September was this segfault bug which I hit maybe a few times a day, triggered by xwayland: https://bugs.freedesktop.org/show_bug.cgi?id=59983 And I believe not using xwayland still pretty

Listing of Wayland functionality of GNOME apps

2013-04-02 Thread darxus
https://live.gnome.org/Wayland/Applications (Link from http://www.reddit.com/r/linux/comments/1bijav/follow_the_status_of_gnome_apps_on_wayland/ ) -- "Forget not that the earth delights to feel your bare feet and the winds long to play with your hair." - Kahlil Gibran http://www.ChaosReigns.com

Weston now depends on libunwind v1.1

2013-04-03 Thread darxus
&& make install Or you can disable it with --disable-libunwind . 03:12PM < Darxus> No package 'libunwind' found 03:12PM < Darxus> New weston dependency? 03:12PM < daniels> Darxus: 03:12PM < daniels> 19:34 < fdo-vcs> weston sardemff7+git master * 5daccc3

glmark2 ported to wayland by Rafał Mielniczuk

2013-04-04 Thread darxus
An open source GLES2 / GL benchmark. It's been accepted upstream: https://code.launchpad.net/~kruk87/glmark2/glmark2-wayland/+merge/156907 https://launchpad.net/glmark2 https://afrantzis.wordpress.com/2011/12/16/glmark2-more-than-a-benchmark/ I just successfully tested it. Although on EGL the fr

Re: glmark2 ported to wayland by Rafał Mielniczuk

2013-04-05 Thread darxus
On 04/05, Rafal Mielniczuk wrote: > To fix the problem with the missing header file you may try setting > CPLUS_INCLUDE_PATH=$WLD/include environment variable Thanks. I've been told needing C_INCLUDE_PATH set is a bug, so I'd think this is too? Looks like running glmark2-es2-wayland on DRM took

Re: glmark2 ported to wayland by Rafał Mielniczuk

2013-04-05 Thread darxus
On 04/05, Rafal Mielniczuk wrote: > To fix the problem with the missing header file you may try setting > CPLUS_INCLUDE_PATH=$WLD/include environment variable Great, thanks, that worked. Added build instructions to http://wayland.freedesktop.org/extras.html -- "Life is either a daring adventure

Re: Can't build Weston on Raspbian

2013-04-07 Thread darxus
On 04/07, Pekka Paalanen wrote: > looks like the build guide is missing --disable-fbdev-compositor option > for autogen.sh for Weston. That should help. Better now? -- "The reasonable man adapts himself to the world; the unreasonable one persists in trying to adapt the world to himself. Therefo

Wayland utilizing Android GPU drivers on glibc based systems, Part 1

2013-04-11 Thread darxus
http://mer-project.blogspot.fi/2013/04/wayland-utilizing-android-gpu-drivers.html http://www.phoronix.com/scan.php?page=news_item&px=MTM0OTE http://www.reddit.com/r/linux/comments/1c52f2/wayland_utilizing_android_gpu_drivers_on_glibc/ (Why is it hard to get people to post this stuff to this list?)

Re: Hawaii is usable now

2013-04-14 Thread darxus
On 04/14, Pier Luigi wrote: > 2013/4/1 : > > So are you actually using this as your primary UI now? The reason I > > stopped using weston as my primary UI in September was this segfault bug > > which I hit maybe a few times a day, triggered by xwayland: > > https://bugs.freedesktop.org/show_bug.c

Re: [PATCH web] Add a testing webpage

2013-04-16 Thread darxus
Nice, thanks. Committed. (HTML validated.) On 04/16, U. Artie Eoff wrote: > From: "U. Artie Eoff" > > The testing.html page briefly describes the current > Wayland and Weston unit test suites. > > Other Wayland enabled test suites/methods will be described > here, too. > > Signed-off-by: U.

Midori browser should now work on Wayland

2013-04-25 Thread darxus
I just noticed the bug for preliminary wayland support was just closed. I haven't tried it. http://twotoasts.de/index.php/midori/ http://en.wikipedia.org/wiki/Midori_%28web_browser%29 Bug: https://bugs.launchpad.net/midori/+bug/975355 It's based on WebKitGTK+, so maybe that should work now as w

Re: Midori browser should now work on Wayland

2013-04-26 Thread darxus
Can you write that up as directions to add to http://wayland.freedesktop.org/extras.html ? Also, for interested folks, there is a #midori channel on irc.freenode.net. On 04/26, MoD wrote: > For testing Midori against Wayland, I use "./configure --enable-gtk3 > --disable-unique". But at present t

Re: Documentation? - a non-x Linux base for wayland/weston to build on?

2013-05-21 Thread darxus
Somebody documented getting wayland to work without X on Arch here: https://wiki.archlinux.org/index.php/Wayland#Pure_Wayland I'd love to see more / better documentation on the subject. On 05/22, scsijon wrote: > I thought I would build a minimum linux 3.8.x system.iso to build a > NON-X base for

Re: [PATCH wayland-web] raspberrypi: update for the new rpi-backend

2013-05-23 Thread darxus
Committed, html validated. On 05/22, ppaala...@gmail.com wrote: > From: Pekka Paalanen > > This depends on the rpi-renderer patch series for Weston. > > Update the build instructions for the current state of Weston, remove > options that do not exist anymore, add some more troubleshooting issue

  1   2   >