ditherer_init.cc
上传用户:aoeyumen
上传日期:2007-01-06
资源大小:3329k
文件大小:0k
源码类别:

DVD

开发平台:

Unix_Linux

  1. #include "ditherer.hh"
  2. #include "ditherer_lk16.hh"
  3. #include "ditherer_lkbw.hh"
  4. #include "ditherer_mmx16.hh"
  5. void Ditherer::loadDefaultModules() {
  6.    addModule(DitherLK16::alloc,"lk16");
  7.    addModule(DitherLK16BW::alloc,"lk16bw");
  8. #ifdef HAVE_MMX
  9.    addModule(Dither_MMX16::alloc,"mmx16");
  10.    addModule(Dither_MMX16B::alloc,"mmx16b");
  11. #endif
  12. }