예제 #1
0
파일: main.c 프로젝트: jtheoof/bina
void
bina_exit()
{
    renderer_destroy();

    if (m.window) {
        sdl_destroy_window(m.window);
    }

    log_d("exiting library");
    sdl_quit();
}
예제 #2
0
static void sdl_out_uninit(MSFilter *f){
	SdlOut *s=(SdlOut*)f->data;
	sdl_destroy_window(s);
	if (s->smallb!=NULL) freemsg(s->smallb);
	ms_free(s);
}