gl-renderer: Rename gl_renderer::output_create to output_window_create

No functional change. This patch renames gl_renderer_output_create() to
gl_renderer_output_window_create(), which is something more descriptive
of what the function does.

Signed-off-by: Miguel A Vico Moya <mvicomoya@nvidia.com>
Reviewed-by: Andy Ritger <aritger@nvidia.com>
Reviewed-by: James Jones <jajones@nvidia.com>
Reviewed-by: Pekka Paalanen <pekka.paalanen@collabora.co.uk>
dev
Miguel A. Vico 8 years ago committed by Pekka Paalanen
parent dddc670c04
commit c095cde364
  1. 2
      libweston/compositor-drm.c
  2. 2
      libweston/compositor-wayland.c
  3. 3
      libweston/compositor-x11.c
  4. 4
      libweston/gl-renderer.c
  5. 2
      libweston/gl-renderer.h

@ -1836,7 +1836,7 @@ drm_output_init_egl(struct drm_output *output, struct drm_backend *b)
if (format[1]) if (format[1])
n_formats = 2; n_formats = 2;
if (gl_renderer->output_create(&output->base, if (gl_renderer->output_window_create(&output->base,
(EGLNativeWindowType)output->gbm_surface, (EGLNativeWindowType)output->gbm_surface,
output->gbm_surface, output->gbm_surface,
gl_renderer->opaque_attribs, gl_renderer->opaque_attribs,

@ -700,7 +700,7 @@ wayland_output_init_gl_renderer(struct wayland_output *output)
return -1; return -1;
} }
if (gl_renderer->output_create(&output->base, if (gl_renderer->output_window_create(&output->base,
output->gl.egl_window, output->gl.egl_window,
output->gl.egl_window, output->gl.egl_window,
gl_renderer->alpha_attribs, gl_renderer->alpha_attribs,

@ -923,7 +923,8 @@ x11_output_enable(struct weston_output *base)
* but eglCreateWindowSurface takes a Window. */ * but eglCreateWindowSurface takes a Window. */
Window xid = (Window) output->window; Window xid = (Window) output->window;
ret = gl_renderer->output_create(&output->base, ret = gl_renderer->output_window_create(
&output->base,
(EGLNativeWindowType) output->window, (EGLNativeWindowType) output->window,
&xid, &xid,
gl_renderer->opaque_attribs, gl_renderer->opaque_attribs,

@ -2640,7 +2640,7 @@ static int
gl_renderer_setup(struct weston_compositor *ec, EGLSurface egl_surface); gl_renderer_setup(struct weston_compositor *ec, EGLSurface egl_surface);
static int static int
gl_renderer_output_create(struct weston_output *output, gl_renderer_output_window_create(struct weston_output *output,
EGLNativeWindowType window_for_legacy, EGLNativeWindowType window_for_legacy,
void *window_for_platform, void *window_for_platform,
const EGLint *attribs, const EGLint *attribs,
@ -3284,7 +3284,7 @@ WL_EXPORT struct gl_renderer_interface gl_renderer_interface = {
.display_create = gl_renderer_display_create, .display_create = gl_renderer_display_create,
.display = gl_renderer_display, .display = gl_renderer_display,
.output_create = gl_renderer_output_create, .output_window_create = gl_renderer_output_window_create,
.output_destroy = gl_renderer_output_destroy, .output_destroy = gl_renderer_output_destroy,
.output_surface = gl_renderer_output_surface, .output_surface = gl_renderer_output_surface,
.output_set_border = gl_renderer_output_set_border, .output_set_border = gl_renderer_output_set_border,

@ -69,7 +69,7 @@ struct gl_renderer_interface {
EGLDisplay (*display)(struct weston_compositor *ec); EGLDisplay (*display)(struct weston_compositor *ec);
int (*output_create)(struct weston_output *output, int (*output_window_create)(struct weston_output *output,
EGLNativeWindowType window_for_legacy, EGLNativeWindowType window_for_legacy,
void *window_for_platform, void *window_for_platform,
const EGLint *attribs, const EGLint *attribs,

Loading…
Cancel
Save