mirror of
https://github.com/mpv-player/mpv
synced 2025-04-01 23:00:41 +00:00
cocoa: remove dead code
This commit is contained in:
parent
d02275d35a
commit
c1d5b182b4
@ -71,9 +71,6 @@ struct vo_cocoa_state {
|
|||||||
IOPMAssertionID power_mgmt_assertion;
|
IOPMAssertionID power_mgmt_assertion;
|
||||||
|
|
||||||
pthread_mutex_t mutex;
|
pthread_mutex_t mutex;
|
||||||
void *ctx;
|
|
||||||
void (*gl_clear)(void *ctx);
|
|
||||||
|
|
||||||
struct mp_log *log;
|
struct mp_log *log;
|
||||||
|
|
||||||
uint32_t old_dwidth;
|
uint32_t old_dwidth;
|
||||||
@ -179,14 +176,6 @@ void vo_cocoa_uninit(struct vo *vo)
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
void vo_cocoa_register_gl_clear_callback(struct vo *vo, void *ctx,
|
|
||||||
void (*cb)(void *ctx))
|
|
||||||
{
|
|
||||||
struct vo_cocoa_state *s = vo->cocoa;
|
|
||||||
s->ctx = ctx;
|
|
||||||
s->gl_clear = cb;
|
|
||||||
}
|
|
||||||
|
|
||||||
static int get_screen_handle(struct vo *vo, int identifier, NSWindow *window,
|
static int get_screen_handle(struct vo *vo, int identifier, NSWindow *window,
|
||||||
NSScreen **screen) {
|
NSScreen **screen) {
|
||||||
struct vo_cocoa_state *s = vo->cocoa;
|
struct vo_cocoa_state *s = vo->cocoa;
|
||||||
|
@ -29,13 +29,6 @@ struct cgl_context {
|
|||||||
CGLContextObj ctx;
|
CGLContextObj ctx;
|
||||||
};
|
};
|
||||||
|
|
||||||
static void gl_clear(void *ctx)
|
|
||||||
{
|
|
||||||
struct GL *gl = ctx;
|
|
||||||
gl->ClearColor(0.0f, 0.0f, 0.0f, 0.0f);
|
|
||||||
gl->Clear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
|
|
||||||
}
|
|
||||||
|
|
||||||
static int set_swap_interval(int enabled)
|
static int set_swap_interval(int enabled)
|
||||||
{
|
{
|
||||||
CGLContextObj ctx = CGLGetCurrentContext();
|
CGLContextObj ctx = CGLGetCurrentContext();
|
||||||
@ -128,7 +121,6 @@ static bool config_window_cocoa(struct MPGLContext *ctx, int flags)
|
|||||||
ctx->gl->SwapInterval = set_swap_interval;
|
ctx->gl->SwapInterval = set_swap_interval;
|
||||||
|
|
||||||
vo_cocoa_config_window(ctx->vo, flags, p->ctx);
|
vo_cocoa_config_window(ctx->vo, flags, p->ctx);
|
||||||
vo_cocoa_register_gl_clear_callback(ctx->vo, ctx->gl, gl_clear);
|
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user