Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2011-03-08 | Move shm interface into libwayland-servershm | Benjamin Franzke | 3 | -0/+299 | |
2011-03-07 | Remove buffer.attach vfuncbuffer | Benjamin Franzke | 1 | -1/+0 | |
2011-03-07 | Add buffer.damage request to the protocol | Benjamin Franzke | 2 | -9/+15 | |
Thus remove the server-side used vfunc buffer::damage. | |||||
2011-02-28 | protocol/wayland: Drop drm interface (move into mesa)setup_display | Benjamin Franzke | 1 | -36/+0 | |
2011-02-14 | Split into a core repository that only holds the core Wayland libraries | Kristian Høgsberg | 61 | -13320/+44 | |
2011-02-14 | compositor: Clip repaint to the damage region | Kristian Høgsberg | 2 | -37/+62 | |
Drop glScissor, and just clip the surface against the repaint region and render each rectangle in the resulting region. | |||||
2011-02-14 | compositor-drm: Flush before pageflipping | Benjamin Franzke | 1 | -0/+1 | |
This fixes compositor-drm flickering on r600. | |||||
2011-02-13 | compositor: Switch away from using VBOs and just stream the vertex data | Kristian Høgsberg | 2 | -42/+30 | |
We avoid changing uniforms for each window and it will be easier to break up a surface into a series of rectangles. | |||||
2011-02-13 | Use pixman regions to reduce repainting | Kristian Høgsberg | 4 | -14/+82 | |
For now, we just use glScissor and clip to the extent of the damage region, but we can do even better by clipping the repaint to the region rectangles. | |||||
2011-02-11 | fix typo in window.c | Tim Wiederhake | 1 | -1/+1 | |
2011-02-10 | wayland-client: Support WAYLAND_DEBUG client side as well | Kristian Høgsberg | 1 | -0/+16 | |
2011-02-10 | configure: remove libdrm dependency for clients | Tiago Vignatti | 1 | -2/+2 | |
Signed-off-by: Tiago Vignatti <tiago.vignatti@nokia.com> | |||||
2011-02-09 | window.c: Use eglGetProcAddress to look up extension functions | Kristian Høgsberg | 1 | -7/+15 | |
2011-02-09 | window.c: Include wayland-egl.h before EGL headers so we get the right platform | Kristian Høgsberg | 2 | -5/+5 | |
2011-02-09 | wayland-egl: Define WL_EGL_PLATFORM in wayland-egl.h | Kristian Høgsberg | 1 | -0/+2 | |
This indicates that we're using the wayland egl platform and will make eglplatform.h typedef the native types correctly. | |||||
2011-02-08 | compositor-x11: Don't send enter/leave notify if we have an implicit grab | Kristian Høgsberg | 1 | -0/+4 | |
2011-02-07 | Add struct wl_egl_display argument to wl_egl_window_create | Kristian Høgsberg | 2 | -2/+4 | |
We don't need it in the mesa implementation, but other implementations might and it's symmetric with wl_egl_pixmap_create(). | |||||
2011-02-07 | Print object interface name when printing message arguments in debug mode | Kristian Høgsberg | 1 | -2/+6 | |
2011-02-07 | Follow wayland-egl renames | Kristian Høgsberg | 2 | -14/+13 | |
2011-02-07 | compositor: Implement super-tab window switching | Kristian Høgsberg | 2 | -10/+99 | |
2011-02-07 | compositor: Set repaint_on_timeout when we schedule a timeout repaint | Kristian Høgsberg | 1 | -0/+1 | |
2011-02-07 | simple-client: Port to wayland-egl and use eglSwapBuffers() | Kristian Høgsberg | 2 | -121/+56 | |
simple-client is simpler. | |||||
2011-02-07 | gears: Remove unused drm_fd field | Kristian Høgsberg | 1 | -1/+0 | |
2011-02-07 | Port window.c to use wayland-egl | Kristian Høgsberg | 5 | -96/+60 | |
2011-02-07 | Add wayland-egl.hwayland-egl | Benjamin Franzke | 2 | -1/+81 | |
This header defines native EGL wayland types and affiliated initialization, processing and destruction routines. EGL implementations must implement this API in order to allow applications using this native types for the EGL implementation. | |||||
2011-02-01 | Update compositor initiated resize to use a 3x3 grid | Kristian Høgsberg | 1 | -2/+10 | |
This lets us do all combinations of resize edges. | |||||
2011-02-01 | compositor: Calculate resizing direction | Benjamin Franzke | 1 | -3/+15 | |
This applies to resizes initiated by the compositor. | |||||
2011-02-01 | window: add null checks | nobled | 1 | -0/+30 | |
Also check for invalid parameters early on, so if we crash, we know *why* we crashed. | |||||
2011-02-01 | add newlines in error messages | nobled | 1 | -4/+4 | |
2011-01-30 | connection: Handle broken pipes in sendmsg | Benjamin Franzke | 1 | -2/+4 | |
2011-01-30 | Fix out of source build [wayland.png] | Benjamin Franzke | 1 | -2/+2 | |
2011-01-30 | Add wayland.png to .gitignore | Tim Wiederhake | 1 | -0/+1 | |
2011-01-28 | Don't crash when the previous keyboard surface goes away | Kristian Høgsberg | 2 | -11/+16 | |
Just always set keyboard focus to the top surface. | |||||
2011-01-28 | Add initial basic support for fullscreen surfaces | Kristian Høgsberg | 6 | -37/+137 | |
2011-01-28 | Merge remote branch 'nobled/for-krh' | Kristian Høgsberg | 1 | -1/+1 | |
2011-01-28 | configure: Drop gdk-pixbuf version dependency | Benjamin Franzke | 1 | -2/+2 | |
The major version 2.0 is sufficient | |||||
2011-01-28 | fix configure check for gcc | nobled | 1 | -1/+1 | |
This shouldn't fail just because someone sets CC=gcc-4.5 explicitly. Besides, this way it also works with compilers that advertise GCC-compatibility like clang and ICC. | |||||
2011-01-27 | compositor-wayland: Handle keyboard focus too | Kristian Høgsberg | 1 | -2/+12 | |
2011-01-27 | compositor-x11: Handle keyboard focus correctly so we avoid stuck modifiers | Kristian Høgsberg | 6 | -3/+80 | |
2011-01-26 | Don't create buffer from NULL pointer | Tim Wiederhake | 1 | -0/+2 | |
Fixes regression introduced in f58d8ca1bd20180bfae3a3a047e8098e0b22b5aa. | |||||
2011-01-26 | compositor: Forward pointer focus notification from compostor backend | Kristian Høgsberg | 5 | -37/+58 | |
This lets the compositor place the pointer sprite correctly when it receives pointer focus and allows it to send pointer focus to any client that might receive pointer focus as the compositor receives it. | |||||
2011-01-26 | Test for rsvg-convert in configure.ac | Kristian Høgsberg | 2 | -2/+8 | |
If it's not present, we just don't install the icon. | |||||
2011-01-26 | compositor-x11: Set window icon | Kristian Høgsberg | 5 | -23/+76 | |
2011-01-26 | Set WM_CLASS for X11 compositor window | Kristian Høgsberg | 1 | -2/+10 | |
Don't want to be 'Unknown' in GNOME Shell. | |||||
2011-01-26 | connection: Also consume message data in error cases | Kristian Høgsberg | 1 | -0/+1 | |
2011-01-26 | shm: Check width, height and stride for invalid values | Kristian Høgsberg | 1 | -2/+12 | |
2011-01-25 | Screenshots were upside down | Tim Wiederhake | 1 | -4/+2 | |
2011-01-25 | Add gio for view fixes | Kristian Høgsberg | 1 | -1/+1 | |
2011-01-25 | clients/view: Fix memory leak | Tim Wiederhake | 1 | -0/+1 | |
2011-01-25 | clients/view: Don't try to show inexistant files | Tim Wiederhake | 1 | -5/+13 | |