diff options
author | Simon Ser <contact@emersion.fr> | 2020-12-19 11:34:28 +0100 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2020-12-30 17:09:40 +0100 |
commit | 4b03bdc3ab0cb1a0296c4d48b125f15a07ca99bd (patch) | |
tree | ba92975fc0f6c3fe7d62bbf2af120ea865383e77 /examples/pointer.c | |
parent | bec1e6b149eb6a5eb470dd4eee6ba0aa57f1b590 (diff) |
Remove wlr_create_renderer_func_t
This callback allowed compositors to customize the EGL config used by
the renderer. However with renderer v6 EGL configs aren't used anymore.
Instead, buffers are allocated via GBM and GL FBOs are rendered to. So
customizing the EGL config is a no-op.
Diffstat (limited to 'examples/pointer.c')
-rw-r--r-- | examples/pointer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/pointer.c b/examples/pointer.c index 92a5934e..64815804 100644 --- a/examples/pointer.c +++ b/examples/pointer.c @@ -333,7 +333,7 @@ int main(int argc, char *argv[]) { .display = display }; - struct wlr_backend *wlr = wlr_backend_autocreate(display, NULL); + struct wlr_backend *wlr = wlr_backend_autocreate(display); if (!wlr) { exit(1); } |