Commit 8510d91e authored by Peter Maydell's avatar Peter Maydell Committed by Anthony Liguori
Browse files

ui/cocoa.m: Fix compile failures introduced by recent console changes



Fix various compilation failures introduced by the recent console
changes.

Signed-off-by: default avatarPeter Maydell <peter.maydell@linaro.org>
Message-id: 1363638501-29603-1-git-send-email-peter.maydell@linaro.org
Signed-off-by: default avatarAnthony Liguori <aliguori@us.ibm.com>
parent 277ba8a6
Loading
Loading
Loading
Loading
+6 −3
Original line number Diff line number Diff line
@@ -403,6 +403,9 @@ QemuCocoaView *cocoaView;
{
    COCOA_DEBUG("QemuCocoaView: switchSurface\n");

    int w = surface_width(surface);
    int h = surface_height(surface);

    // update screenBuffer
    if (dataProviderRef)
        CGDataProviderRelease(dataProviderRef);
@@ -1014,9 +1017,9 @@ static void cocoa_cleanup(void)

static const DisplayChangeListenerOps dcl_ops = {
    .dpy_name          = "cocoa",
    .dpy_gfx_update = cocoa_update;
    .dpy_gfx_switch = cocoa_switch;
    .dpy_refresh = cocoa_refresh;
    .dpy_gfx_update = cocoa_update,
    .dpy_gfx_switch = cocoa_switch,
    .dpy_refresh = cocoa_refresh,
};

void cocoa_display_init(DisplayState *ds, int full_screen)