Skip to content

Commit

Permalink
render/gles2: make EGL context current in bind_buffer
Browse files Browse the repository at this point in the history
Instead of requiring callers to manually make the EGL context current
before binding a buffer and unsetting it after unbinding a buffer, do
it inside wlr_renderer_bind_buffer.

This hides renderer-specific implementation details inside the
wlr_renderer interface. Non-GLES2 renderers may not use EGL.
This removes almost all EGL dependencies from the backends, the only
remaining one is wlr_renderer_autocreate args.

References: swaywm#2618
References: swaywm#2615 (comment)
  • Loading branch information
emersion committed Jan 14, 2021
1 parent a6a0568 commit e379739
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 51 deletions.
7 changes: 0 additions & 7 deletions backend/drm/renderer.c
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
#include <string.h>
#include <unistd.h>
#include <wayland-util.h>
#include <wlr/render/gles2.h>
#include <wlr/render/wlr_renderer.h>
#include <wlr/types/wlr_matrix.h>
#include <wlr/util/log.h>
Expand Down Expand Up @@ -115,10 +114,6 @@ bool drm_surface_make_current(struct wlr_drm_surface *surf,
return false;
}

struct wlr_egl *egl = wlr_gles2_renderer_get_egl(surf->renderer->wlr_rend);
if (!wlr_egl_make_current(egl)) {
return false;
}
if (!wlr_renderer_bind_buffer(surf->renderer->wlr_rend, surf->back_buffer)) {
wlr_log(WLR_ERROR, "Failed to attach buffer to renderer");
return false;
Expand All @@ -129,10 +124,8 @@ bool drm_surface_make_current(struct wlr_drm_surface *surf,

void drm_surface_unset_current(struct wlr_drm_surface *surf) {
assert(surf->back_buffer != NULL);
struct wlr_egl *egl = wlr_gles2_renderer_get_egl(surf->renderer->wlr_rend);

wlr_renderer_bind_buffer(surf->renderer->wlr_rend, NULL);
wlr_egl_unset_current(egl);

wlr_buffer_unlock(surf->back_buffer);
surf->back_buffer = NULL;
Expand Down
14 changes: 0 additions & 14 deletions backend/headless/output.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
#include <stdlib.h>
#include <stdio.h>
#include <wlr/interfaces/wlr_output.h>
#include <wlr/render/gles2.h>
#include <wlr/render/wlr_renderer.h>
#include <wlr/util/log.h>
#include "backend/headless.h"
Expand Down Expand Up @@ -43,18 +42,13 @@ static bool output_attach_render(struct wlr_output *wlr_output,
int *buffer_age) {
struct wlr_headless_output *output =
headless_output_from_output(wlr_output);
struct wlr_egl *egl = wlr_gles2_renderer_get_egl(
output->backend->renderer);

wlr_buffer_unlock(output->back_buffer);
output->back_buffer = wlr_swapchain_acquire(output->swapchain, buffer_age);
if (!output->back_buffer) {
return false;
}

if (!wlr_egl_make_current(egl)) {
return false;
}
if (!wlr_renderer_bind_buffer(output->backend->renderer,
output->back_buffer)) {
return false;
Expand Down Expand Up @@ -101,10 +95,6 @@ static bool output_commit(struct wlr_output *wlr_output) {

wlr_renderer_bind_buffer(output->backend->renderer, NULL);

struct wlr_egl *egl = wlr_gles2_renderer_get_egl(
output->backend->renderer);
wlr_egl_unset_current(egl);

buffer = output->back_buffer;
output->back_buffer = NULL;
break;
Expand All @@ -128,12 +118,8 @@ static bool output_commit(struct wlr_output *wlr_output) {
static void output_rollback_render(struct wlr_output *wlr_output) {
struct wlr_headless_output *output =
headless_output_from_output(wlr_output);
struct wlr_egl *egl = wlr_gles2_renderer_get_egl(
output->backend->renderer);
assert(wlr_egl_is_current(egl));

wlr_renderer_bind_buffer(output->backend->renderer, NULL);
wlr_egl_unset_current(egl);

wlr_buffer_unlock(output->back_buffer);
output->back_buffer = NULL;
Expand Down
19 changes: 0 additions & 19 deletions backend/wayland/output.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
#include <wayland-client.h>

#include <wlr/interfaces/wlr_output.h>
#include <wlr/render/gles2.h>
#include <wlr/render/wlr_renderer.h>
#include <wlr/types/wlr_matrix.h>
#include <wlr/util/log.h>
Expand Down Expand Up @@ -116,18 +115,13 @@ static bool output_set_custom_mode(struct wlr_output *wlr_output,
static bool output_attach_render(struct wlr_output *wlr_output,
int *buffer_age) {
struct wlr_wl_output *output = get_wl_output_from_output(wlr_output);
struct wlr_egl *egl = wlr_gles2_renderer_get_egl(
output->backend->renderer);

wlr_buffer_unlock(output->back_buffer);
output->back_buffer = wlr_swapchain_acquire(output->swapchain, buffer_age);
if (!output->back_buffer) {
return false;
}

if (!wlr_egl_make_current(egl)) {
return false;
}
if (!wlr_renderer_bind_buffer(output->backend->renderer,
output->back_buffer)) {
return false;
Expand Down Expand Up @@ -312,10 +306,6 @@ static bool output_commit(struct wlr_output *wlr_output) {
wlr_buffer = output->back_buffer;

wlr_renderer_bind_buffer(output->backend->renderer, NULL);

struct wlr_egl *egl = wlr_gles2_renderer_get_egl(
output->backend->renderer);
wlr_egl_unset_current(egl);
break;
case WLR_OUTPUT_STATE_BUFFER_SCANOUT:;
wlr_buffer = wlr_output->pending.buffer;
Expand Down Expand Up @@ -375,10 +365,7 @@ static bool output_commit(struct wlr_output *wlr_output) {

static void output_rollback_render(struct wlr_output *wlr_output) {
struct wlr_wl_output *output = get_wl_output_from_output(wlr_output);
struct wlr_egl *egl = wlr_gles2_renderer_get_egl(
output->backend->renderer);
wlr_renderer_bind_buffer(output->backend->renderer, NULL);
wlr_egl_unset_current(egl);
}

static bool output_set_cursor(struct wlr_output *wlr_output,
Expand Down Expand Up @@ -410,8 +397,6 @@ static bool output_set_cursor(struct wlr_output *wlr_output,
struct wl_surface *surface = output->cursor.surface;

if (texture != NULL) {
struct wlr_egl *egl = wlr_gles2_renderer_get_egl(
output->backend->renderer);
int width = texture->width * wlr_output->scale / scale;
int height = texture->height * wlr_output->scale / scale;

Expand All @@ -433,9 +418,6 @@ static bool output_set_cursor(struct wlr_output *wlr_output,
return false;
}

if (!wlr_egl_make_current(egl)) {
return false;
}
if (!wlr_renderer_bind_buffer(output->backend->renderer, wlr_buffer)) {
return false;
}
Expand All @@ -457,7 +439,6 @@ static bool output_set_cursor(struct wlr_output *wlr_output,
wlr_renderer_end(backend->renderer);

wlr_renderer_bind_buffer(output->backend->renderer, NULL);
wlr_egl_unset_current(egl);

struct wlr_wl_buffer *buffer =
get_or_create_wl_buffer(output->backend, wlr_buffer);
Expand Down
9 changes: 0 additions & 9 deletions backend/x11/output.c
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
#include <wlr/interfaces/wlr_output.h>
#include <wlr/interfaces/wlr_pointer.h>
#include <wlr/interfaces/wlr_touch.h>
#include <wlr/render/gles2.h>
#include <wlr/util/log.h>

#include "backend/x11.h"
Expand Down Expand Up @@ -98,17 +97,13 @@ static bool output_attach_render(struct wlr_output *wlr_output,
int *buffer_age) {
struct wlr_x11_output *output = get_x11_output_from_output(wlr_output);
struct wlr_x11_backend *x11 = output->x11;
struct wlr_egl *egl = wlr_gles2_renderer_get_egl(x11->renderer);

wlr_buffer_unlock(output->back_buffer);
output->back_buffer = wlr_swapchain_acquire(output->swapchain, buffer_age);
if (!output->back_buffer) {
return false;
}

if (!wlr_egl_make_current(egl)) {
return false;
}
if (!wlr_renderer_bind_buffer(x11->renderer, output->back_buffer)) {
return false;
}
Expand Down Expand Up @@ -206,12 +201,10 @@ static struct wlr_x11_buffer *get_or_create_x11_buffer(

static bool output_commit_buffer(struct wlr_x11_output *output) {
struct wlr_x11_backend *x11 = output->x11;
struct wlr_egl *egl = wlr_gles2_renderer_get_egl(x11->renderer);

assert(output->back_buffer != NULL);

wlr_renderer_bind_buffer(x11->renderer, NULL);
wlr_egl_unset_current(egl);

struct wlr_x11_buffer *x11_buffer =
get_or_create_x11_buffer(output, output->back_buffer);
Expand Down Expand Up @@ -318,10 +311,8 @@ static bool output_commit(struct wlr_output *wlr_output) {
static void output_rollback_render(struct wlr_output *wlr_output) {
struct wlr_x11_output *output = get_x11_output_from_output(wlr_output);
struct wlr_x11_backend *x11 = output->x11;
struct wlr_egl *egl = wlr_gles2_renderer_get_egl(x11->renderer);

wlr_renderer_bind_buffer(x11->renderer, NULL);
wlr_egl_unset_current(egl);
}

static const struct wlr_output_impl output_impl = {
Expand Down
8 changes: 6 additions & 2 deletions render/gles2/renderer.c
Original file line number Diff line number Diff line change
Expand Up @@ -139,10 +139,11 @@ static struct wlr_gles2_buffer *create_buffer(struct wlr_gles2_renderer *rendere

static bool gles2_bind_buffer(struct wlr_renderer *wlr_renderer,
struct wlr_buffer *wlr_buffer) {
struct wlr_gles2_renderer *renderer =
gles2_get_renderer_in_context(wlr_renderer);
struct wlr_gles2_renderer *renderer = gles2_get_renderer(wlr_renderer);

if (renderer->current_buffer != NULL) {
assert(wlr_egl_is_current(renderer->egl));

push_gles2_debug(renderer);
glFlush();
glBindFramebuffer(GL_FRAMEBUFFER, 0);
Expand All @@ -153,9 +154,12 @@ static bool gles2_bind_buffer(struct wlr_renderer *wlr_renderer,
}

if (wlr_buffer == NULL) {
wlr_egl_unset_current(renderer->egl);
return true;
}

wlr_egl_make_current(renderer->egl);

struct wlr_gles2_buffer *buffer = get_buffer(renderer, wlr_buffer);
if (buffer == NULL) {
buffer = create_buffer(renderer, wlr_buffer);
Expand Down

0 comments on commit e379739

Please sign in to comment.