diff options
author | emersion <contact@emersion.fr> | 2018-04-21 10:20:33 +0100 |
---|---|---|
committer | emersion <contact@emersion.fr> | 2018-04-21 10:20:33 +0100 |
commit | 1588094b9900b66a023fb2446651f96d6d7315b3 (patch) | |
tree | 179ec08c25143e313cf2b745a49c3228ee2a6408 | |
parent | c18afd6731270cf3243586989416bc2168d7588f (diff) |
Remove a few local prefixed symbols
-rw-r--r-- | render/egl.c | 4 | ||||
-rw-r--r-- | wlroots.syms | 4 |
2 files changed, 2 insertions, 6 deletions
diff --git a/render/egl.c b/render/egl.c index f398974d..b52682ea 100644 --- a/render/egl.c +++ b/render/egl.c @@ -241,7 +241,7 @@ EGLSurface wlr_egl_create_surface(struct wlr_egl *egl, void *window) { return surf; } -int wlr_egl_get_buffer_age(struct wlr_egl *egl, EGLSurface surface) { +static int egl_get_buffer_age(struct wlr_egl *egl, EGLSurface surface) { if (!egl->egl_exts.buffer_age) { return -1; } @@ -265,7 +265,7 @@ bool wlr_egl_make_current(struct wlr_egl *egl, EGLSurface surface, } if (buffer_age != NULL) { - *buffer_age = wlr_egl_get_buffer_age(egl, surface); + *buffer_age = egl_get_buffer_age(egl, surface); } return true; } diff --git a/wlroots.syms b/wlroots.syms index cb030a6d..fcf7fe03 100644 --- a/wlroots.syms +++ b/wlroots.syms @@ -4,9 +4,6 @@ WLROOTS_0_0_0 { _wlr_log; _wlr_vlog; local: - wlr_data_device_keyboard_drag_interface; - wlr_data_device_pointer_drag_interface; - wlr_data_device_touch_drag_interface; wlr_drm_backend_get_session; wlr_drm_check_features; wlr_drm_connector_cleanup; @@ -31,7 +28,6 @@ WLROOTS_0_0_0 { wlr_drm_surface_mgpu_copy; wlr_drm_surface_post; wlr_drm_surface_swap_buffers; - wlr_egl_get_buffer_age; wlr_libinput_event; wlr_libinput_keyboard_create; wlr_libinput_pointer_create; |