Mercurial > hg > Members > kono > Cerium
view TaskManager/Test/test_render/viewerFB.cpp @ 228:c254a2bd1b34
remove SceneGraph::data, add SceneGraph::coord_xyz, coord_tex, normal
author | gongo@gendarme.cr.ie.u-ryukyu.ac.jp |
---|---|
date | Thu, 12 Feb 2009 16:31:38 +0900 |
parents | 5ffee529dc59 |
children | a4f690f44842 |
line wrap: on
line source
#include "viewerFB.h" #include "Func.h" #include "fb.h" extern void post2runLoop(void *); void ViewerFB::video_init(void) { 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); }