提交 8510d91e 编写于 作者: P Peter Maydell 提交者: Anthony Liguori

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

Fix various compilation failures introduced by the recent console
changes.
Signed-off-by: NPeter Maydell <peter.maydell@linaro.org>
Message-id: 1363638501-29603-1-git-send-email-peter.maydell@linaro.org
Signed-off-by: NAnthony Liguori <aliguori@us.ibm.com>
上级 277ba8a6
...@@ -403,6 +403,9 @@ QemuCocoaView *cocoaView; ...@@ -403,6 +403,9 @@ QemuCocoaView *cocoaView;
{ {
COCOA_DEBUG("QemuCocoaView: switchSurface\n"); COCOA_DEBUG("QemuCocoaView: switchSurface\n");
int w = surface_width(surface);
int h = surface_height(surface);
// update screenBuffer // update screenBuffer
if (dataProviderRef) if (dataProviderRef)
CGDataProviderRelease(dataProviderRef); CGDataProviderRelease(dataProviderRef);
...@@ -1014,9 +1017,9 @@ static void cocoa_cleanup(void) ...@@ -1014,9 +1017,9 @@ static void cocoa_cleanup(void)
static const DisplayChangeListenerOps dcl_ops = { static const DisplayChangeListenerOps dcl_ops = {
.dpy_name = "cocoa", .dpy_name = "cocoa",
.dpy_gfx_update = cocoa_update; .dpy_gfx_update = cocoa_update,
.dpy_gfx_switch = cocoa_switch; .dpy_gfx_switch = cocoa_switch,
.dpy_refresh = cocoa_refresh; .dpy_refresh = cocoa_refresh,
}; };
void cocoa_display_init(DisplayState *ds, int full_screen) void cocoa_display_init(DisplayState *ds, int full_screen)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册