view TaskManager/Test/test_render/viewerFB.cc @ 552:a307e33178e7

add Application/send_linda.cc
author aaa
date Thu, 22 Oct 2009 19:34:38 +0900
parents a18ded47c5dd
children
line wrap: on
line source

#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);
}