diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-09-29 10:12:58 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-29 10:12:58 -0400 |
commit | 285a109d416c9bcdc0c47dfb1b9ce4e474cd34dd (patch) | |
tree | 76277fbcbd76b5a376d9ba49b21be614b3327b42 /include/wlr/egl.h | |
parent | 6479fb27be364ef6ee7c5289c18d015ec3d8c2f3 (diff) | |
parent | 1b18b0a27d285270c12e57781738c48377d5529b (diff) |
Merge pull request #164 from ascent12/x11-backend
X11 backend
Diffstat (limited to 'include/wlr/egl.h')
-rw-r--r-- | include/wlr/egl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/wlr/egl.h b/include/wlr/egl.h index b37317a5..25329175 100644 --- a/include/wlr/egl.h +++ b/include/wlr/egl.h @@ -30,7 +30,7 @@ struct wlr_egl { * Initializes an egl context for the given platform and remote display. * Will attempt to load all possibly required api functions. */ -bool wlr_egl_init(struct wlr_egl *egl, EGLenum platform, void *display); +bool wlr_egl_init(struct wlr_egl *egl, EGLenum platform, EGLint visual_id, void *display); /** * Frees all related egl resources, makes the context not-current and |