*
* Contact:
* SeokYeon Hwang <syeon.hwang@samsung.com>
- * Hyunjun Son <hj79.son@samsung.com>
+ * HyunJun Son <hj79.son@samsung.com>
* MunKyu Im <munkyu.im@samsung.com>
* GiWoong Kim <giwoong.kim@samsung.com>
* YeongKyoon Lee <yeongkyoon.lee@samsung.com>
/**
* @file emulator.h
- * @brief - header of file these are config struecture and defines in emulator
+ * @brief - header of file these are config structures and defines in emulator
*/
#ifndef __MARU_COMMON_H__
#include <stdint.h>
#include <stdbool.h>
-#endif
+#endif /* __MARU_COMMON_H__ */
static void qemu_update(void)
{
- SDL_Surface *surface = NULL;
-
#ifndef SDL_THREAD
pthread_mutex_lock(&sdl_mutex);
#endif
- surface = SDL_GetVideoSurface();
SDL_BlitSurface(surface_qemu, NULL, surface_screen, NULL);
SDL_UpdateRect(surface_screen, 0, 0, 0, 0);
}
}
-
void maruskin_display_init(DisplayState *ds)
{
- INFO( "qemu_display_init\n");
+ INFO( "qemu display initialize\n");
+
/* graphics context information */
DisplayChangeListener *dcl;
#endif
}
-
void maruskin_sdl_init(int swt_handle)
{
gchar SDL_windowhack[32];
exit(1);
}
+ INFO( "qemu_sdl_initialize\n");
surface_screen = SDL_SetVideoMode(480, 800, 0,
SDL_HWSURFACE | SDL_ASYNCBLIT | SDL_HWACCEL | SDL_NOFRAME);
#ifndef _WIN32
SDL_VERSION(&info.version);
SDL_GetWMInfo(&info);
- // opengl_exec_set_parent_window(info.info.x11.display, info.info.x11.window);
#endif
}