diff Renderer/Engine/viewerFB.cc @ 507:735f76483bb2

Reorganization..
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 12 Oct 2009 09:39:35 +0900
parents
children 4f77768d7a7f
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Renderer/Engine/viewerFB.cc	Mon Oct 12 09:39:35 2009 +0900
@@ -0,0 +1,29 @@
+#include "viewerFB.h"
+#include "Func.h"
+#include "fb.h"
+
+//extern void post2runLoop(void *);
+
+void
+ViewerFB::video_init(TaskManager *manager)
+{
+    Uint32 sdl_flag = default_sdl_flag | SDL_INIT_VIDEO;
+
+    if (SDL_Init(sdl_flag) < 0) {
+	fprintf(stderr,"Couldn't initialize SDL: %s\n",SDL_GetError());
+	exit(1);
+    }
+
+    pixels = (Uint32*)get_fbdev_addr();
+
+    if (pixels == 0) {
+	pixels = (new Uint32[width*height*32/8]);
+    }
+}
+
+void
+ViewerFB::clean_pixels()
+{
+    //bzero(pixels, sizeof(int)*width*height);
+    //memset(pixels, 0xFF, sizeof(int)*width*height);
+}