Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-11-13 | output: make wlr_egl flip the damage | emersion | |
2018-10-28 | render: on Wayland, make eglSwapBuffers non-blocking | emersion | |
2018-10-15 | Fix libdrm includes | Scott Anderson | |
This removes any assumptions about how the libdrm headers are installed, and uses the pkg-config include directories as we're "supposed to". This only adds a partial dependency, since we don't actually need to link against libdrm. | |||
2018-10-14 | Merge pull request #1309 from swaywm/fix-headless-libinput | emersion | |
Fix headless backend | |||
2018-10-13 | Fix include path for (libdrm/)drm_fourcc.h | Cole Mickens | |
This PR broke a private nixpkgs definition I have for wlroots: https://github.com/swaywm/wlroots/pull/1304 It is fixed by changing `#include <drm_fourcc.h>` to `#include <libdrm/drm_fourcc.h>`, which follows what is already done in the dmabuf example. | |||
2018-10-13 | Fix headless backend | Drew DeVault | |
It was only working if you ran it underneath an already-working Wayland compositor. Running with the headless backend on the API would break. | |||
2018-10-12 | Support older wlr_linux_dmabuf_v1 clients | nyorain | |
If a client uses an older version of the dmabuf protocol, use the `formats` event instead of `modifiers` (since that didn't exist in older versions). With a bit of necessary guessing, support dmabuf importing even when EGL_EXT_image_dma_buf_import_modifiers isn't present instead of failing up front. | |||
2018-07-09 | util: add wlr_ prefix to log symbols | emersion | |
2018-06-17 | Merge branch 'master' into screencontent | emersion | |
2018-06-09 | Rename egl.exts to match the extension names | Vincent Vanlaer | |
2018-06-09 | Split eglSwapBuffersWithDamage feature detection | Vincent Vanlaer | |
Detecting whether eglSwapBuffersWithDamageEXT or eglSwapBuffersWithDamageKHR is used should be based on the extension string, not only on the availability of the function. | |||
2018-06-08 | Fix atti assert in wlr_egl_init | Brian Ashworth | |
2018-06-08 | render/egl: only request high priority context on DRM | emersion | |
2018-06-08 | render/egl: consistent extension checking | emersion | |
2018-06-08 | Request a high priority EGL context | emersion | |
2018-05-31 | Merge branch 'master' into screencontent | emersion | |
2018-05-30 | render: remove wlr_renderer_check_import_dmabuf | emersion | |
It's possible to implement it outside the renderer, by creating a texture and destroying it right away. This reduces the API surface of the renderer. | |||
2018-05-30 | Only allow one modifier per DMA-BUF, split attributes struct in render/ | emersion | |
2018-05-29 | render: add wlr_texture_to_dmabuf | emersion | |
2018-05-23 | fix server exit: eglMakeCurrent Invalid display | agr | |
2018-05-13 | fix check of EGL_WL_bind_wayland_display presence | Alain Greppin | |
2018-04-26 | Log required extension name if unavailable | emersion | |
2018-04-25 | render/egl: allow passing NULL to surface and image destructors | emersion | |
2018-04-24 | render/egl: add wlr_egl_destroy_surface | emersion | |
2018-04-21 | Remove a few local prefixed symbols | emersion | |
2018-04-04 | egl: silence dmabuf error when extension is not present | Guido Günther | |
This makes it match 4bf936360d42fb5b96a44fd17028ae66fc462362. | |||
2018-04-01 | Untie wlr_gles2_renderer and wlr_gles2_texture | emersion | |
2018-03-31 | render/egl: add wlr_egl_create_image_from_wl_drm | emersion | |
This allows external renderers and potential future GL-based renderers to re-use this function. | |||
2018-03-28 | Merge pull request #744 from emersion/texture-redesign | Tony Crisci | |
Redesign wlr_texture | |||
2018-03-27 | Fix issue starting up client EGL on X11 backend | Drew DeVault | |
2018-03-27 | Implement layer surface damage | Drew DeVault | |
2018-03-27 | Arrange & render layer surfaces | Drew DeVault | |
2018-03-27 | render: remove GL calls from wlr_egl | emersion | |
2018-03-24 | Redesign wlr_texture | emersion | |
- Textures are now immutable (apart from those created from raw pixels), no more invalid textures - Move all wl_drm stuff in wlr_renderer - Most of wlr_texture fields are now private - Remove some duplicated DMA-BUF code in the DRM backend - Add more assertions - Stride is now always given as bytes rather than pixels - Drop wl_shm functions Fun fact: this patch has been written 10,000 meters up in the air. | |||
2018-03-23 | linux-dmabuf: Support multi plane formats like NV12 | Guido Günther | |
2018-03-21 | render/egl: use EGL_KHR_debug | emersion | |
2018-03-16 | egl: print supported dmabuf formats | Guido Günther | |
Useful for debugging dmabuf related problems e.g. when a client requests a certain and we fail to support it. | |||
2018-03-15 | Add initial linux_dmabuf protocol support | Guido Günther | |
Tested with ./weston-simple-dmabuf-drm ./weston-simple-dmabuf-drm --import-immediate=1 ./weston-simple-dmabuf-drm --y-inverted=1 (and combinations) Supports only single plane XRGB dmabufs for now. | |||
2018-02-28 | Avoid false positives on egl extension matching | Guido Günther | |
Due to the strstr prefix match EGL_EXT_foo would be incorrectly matched if EGL_EXT_foobar would be available but not foo. This doesn't matter for the currently checked extensions but will matter for EGL_EXT_image_dma_buf_import_modifiers vs EGL_EXT_image_dma_buf_import Code borrowed from weston | |||
2018-02-28 | wlr_egl_create_image: return NULL when function is missing | Guido Günther | |
This matches the return value of elgCreateImage in case of error. | |||
2018-02-19 | Revert "ELF Visibility" | Drew DeVault | |
2018-02-19 | Explicitly export EFL symbols | Scott Anderson | |
2018-02-15 | Log GL and EGL vendor | Guido Günther | |
useful for debugging | |||
2018-02-12 | Reformat all #include directives | emersion | |
2018-02-09 | Swap buffers with damage | emersion | |
2018-01-21 | output: add damage tracking via buffer age | emersion | |
2017-12-17 | Refactor wlr_egl_init to accept config_attribs | emersion | |
2017-12-08 | Listen to display destroy in xwayland, rename wlr_egl_free | emersion | |
2017-11-30 | Use correct include path for glapi.h | Scott Anderson | |
2017-10-22 | Move egl.h to render/egl.h | Scott Anderson | |