mirror of
https://github.com/mpv-player/mpv
synced 2025-01-22 23:53:29 +00:00
65979986a9
This is done in several steps: 1. refactor MPGLContext -> struct ra_ctx 2. move GL-specific stuff in vo_opengl into opengl/context.c 3. generalize context creation to support other APIs, and add --gpu-api 4. rename all of the --opengl- options that are no longer opengl-specific 5. move all of the stuff from opengl/* that isn't GL-specific into gpu/ (note: opengl/gl_utils.h became opengl/utils.h) 6. rename vo_opengl to vo_gpu 7. to handle window screenshots, the short-term approach was to just add it to ra_swchain_fns. Long term (and for vulkan) this has to be moved to ra itself (and vo_gpu altered to compensate), but this was a stop-gap measure to prevent this commit from getting too big 8. move ra->fns->flush to ra_gl_ctx instead 9. some other minor changes that I've probably already forgotten Note: This is one half of a major refactor, the other half of which is provided by rossy's following commit. This commit enables support for all linux platforms, while his version enables support for all non-linux platforms. Note 2: vo_opengl_cb.c also re-uses ra_gl_ctx so it benefits from the --opengl- options like --opengl-early-flush, --opengl-finish etc. Should be a strict superset of the old functionality. Disclaimer: Since I have no way of compiling mpv on all platforms, some of these ports were done blindly. Specifically, the blind ports included context_mali_fbdev.c and context_rpi.c. Since they're both based on egl_helpers, the port should have gone smoothly without any major changes required. But if somebody complains about a compile error on those platforms (assuming anybody actually uses them), you know where to complain.
200 lines
5.3 KiB
C
200 lines
5.3 KiB
C
/*
|
|
* This file is part of mpv.
|
|
*
|
|
* mpv is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* mpv is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with mpv. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include <assert.h>
|
|
|
|
#include <X11/Xlib.h>
|
|
#include <EGL/egl.h>
|
|
#include <EGL/eglext.h>
|
|
|
|
#ifndef EGL_VERSION_1_5
|
|
#define EGL_CONTEXT_OPENGL_PROFILE_MASK 0x30FD
|
|
#define EGL_CONTEXT_OPENGL_CORE_PROFILE_BIT 0x00000001
|
|
#endif
|
|
|
|
#include "common/common.h"
|
|
#include "video/out/x11_common.h"
|
|
#include "context.h"
|
|
#include "egl_helpers.h"
|
|
|
|
struct priv {
|
|
GL gl;
|
|
EGLDisplay egl_display;
|
|
EGLContext egl_context;
|
|
EGLSurface egl_surface;
|
|
};
|
|
|
|
static void mpegl_uninit(struct ra_ctx *ctx)
|
|
{
|
|
struct priv *p = ctx->priv;
|
|
ra_gl_ctx_uninit(ctx);
|
|
|
|
if (p->egl_context) {
|
|
eglMakeCurrent(p->egl_display, EGL_NO_SURFACE, EGL_NO_SURFACE,
|
|
EGL_NO_CONTEXT);
|
|
eglDestroyContext(p->egl_display, p->egl_context);
|
|
}
|
|
p->egl_context = EGL_NO_CONTEXT;
|
|
vo_x11_uninit(ctx->vo);
|
|
}
|
|
|
|
static int pick_xrgba_config(void *user_data, EGLConfig *configs, int num_configs)
|
|
{
|
|
struct ra_ctx *ctx = user_data;
|
|
struct priv *p = ctx->priv;
|
|
struct vo *vo = ctx->vo;
|
|
|
|
for (int n = 0; n < num_configs; n++) {
|
|
int vID = 0, num;
|
|
eglGetConfigAttrib(p->egl_display, configs[n], EGL_NATIVE_VISUAL_ID, &vID);
|
|
XVisualInfo template = {.visualid = vID};
|
|
XVisualInfo *vi = XGetVisualInfo(vo->x11->display, VisualIDMask,
|
|
&template, &num);
|
|
if (vi) {
|
|
bool is_rgba = vo_x11_is_rgba_visual(vi);
|
|
XFree(vi);
|
|
if (is_rgba)
|
|
return n;
|
|
}
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static void mpegl_swap_buffers(struct ra_ctx *ctx)
|
|
{
|
|
struct priv *p = ctx->priv;
|
|
eglSwapBuffers(p->egl_display, p->egl_surface);
|
|
}
|
|
|
|
static bool mpegl_init(struct ra_ctx *ctx)
|
|
{
|
|
struct priv *p = ctx->priv = talloc_zero(ctx, struct priv);
|
|
struct vo *vo = ctx->vo;
|
|
int msgl = ctx->opts.probing ? MSGL_V : MSGL_FATAL;
|
|
|
|
if (!vo_x11_init(vo))
|
|
goto uninit;
|
|
|
|
p->egl_display = eglGetDisplay(vo->x11->display);
|
|
if (!eglInitialize(p->egl_display, NULL, NULL)) {
|
|
MP_MSG(ctx, msgl, "Could not initialize EGL.\n");
|
|
goto uninit;
|
|
}
|
|
|
|
struct mpegl_cb cb = {
|
|
.user_data = ctx,
|
|
.refine_config = ctx->opts.want_alpha ? pick_xrgba_config : NULL,
|
|
};
|
|
|
|
EGLConfig config;
|
|
if (!mpegl_create_context_cb(ctx, p->egl_display, cb, &p->egl_context, &config))
|
|
goto uninit;
|
|
|
|
int vID, n;
|
|
eglGetConfigAttrib(p->egl_display, config, EGL_NATIVE_VISUAL_ID, &vID);
|
|
MP_VERBOSE(ctx, "chose visual 0x%x\n", vID);
|
|
XVisualInfo template = {.visualid = vID};
|
|
XVisualInfo *vi = XGetVisualInfo(vo->x11->display, VisualIDMask, &template, &n);
|
|
|
|
if (!vi) {
|
|
MP_FATAL(ctx, "Getting X visual failed!\n");
|
|
goto uninit;
|
|
}
|
|
|
|
if (!vo_x11_create_vo_window(vo, vi, "gl")) {
|
|
XFree(vi);
|
|
goto uninit;
|
|
}
|
|
|
|
XFree(vi);
|
|
|
|
p->egl_surface = eglCreateWindowSurface(p->egl_display, config,
|
|
(EGLNativeWindowType)vo->x11->window, NULL);
|
|
|
|
if (p->egl_surface == EGL_NO_SURFACE) {
|
|
MP_FATAL(ctx, "Could not create EGL surface!\n");
|
|
goto uninit;
|
|
}
|
|
|
|
if (!eglMakeCurrent(p->egl_display, p->egl_surface, p->egl_surface,
|
|
p->egl_context))
|
|
{
|
|
MP_FATAL(ctx, "Could not make context current!\n");
|
|
goto uninit;
|
|
}
|
|
|
|
mpegl_load_functions(&p->gl, ctx->log);
|
|
|
|
struct ra_gl_ctx_params params = {
|
|
.swap_buffers = mpegl_swap_buffers,
|
|
.native_display_type = "x11",
|
|
.native_display = vo->x11->display,
|
|
};
|
|
|
|
if (!ra_gl_ctx_init(ctx, &p->gl, params))
|
|
goto uninit;
|
|
|
|
return true;
|
|
|
|
uninit:
|
|
mpegl_uninit(ctx);
|
|
return false;
|
|
}
|
|
|
|
static void resize(struct ra_ctx *ctx)
|
|
{
|
|
ra_gl_ctx_resize(ctx->swapchain, ctx->vo->dwidth, ctx->vo->dheight, 0);
|
|
}
|
|
|
|
static bool mpegl_reconfig(struct ra_ctx *ctx)
|
|
{
|
|
vo_x11_config_vo_window(ctx->vo);
|
|
resize(ctx);
|
|
return true;
|
|
}
|
|
|
|
static int mpegl_control(struct ra_ctx *ctx, int *events, int request,
|
|
void *arg)
|
|
{
|
|
int ret = vo_x11_control(ctx->vo, events, request, arg);
|
|
if (*events & VO_EVENT_RESIZE)
|
|
resize(ctx);
|
|
return ret;
|
|
}
|
|
|
|
static void mpegl_wakeup(struct ra_ctx *ctx)
|
|
{
|
|
vo_x11_wakeup(ctx->vo);
|
|
}
|
|
|
|
static void mpegl_wait_events(struct ra_ctx *ctx, int64_t until_time_us)
|
|
{
|
|
vo_x11_wait_events(ctx->vo, until_time_us);
|
|
}
|
|
|
|
const struct ra_ctx_fns ra_ctx_x11_egl = {
|
|
.type = "opengl",
|
|
.name = "x11egl",
|
|
.reconfig = mpegl_reconfig,
|
|
.control = mpegl_control,
|
|
.wakeup = mpegl_wakeup,
|
|
.wait_events = mpegl_wait_events,
|
|
.init = mpegl_init,
|
|
.uninit = mpegl_uninit,
|
|
};
|