Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00012 #ifndef VIDEO_NULL_H
00013 #define VIDEO_NULL_H
00014
00015 #include "video_driver.hpp"
00016
00017 class VideoDriver_Null: public VideoDriver {
00018 private:
00019 uint ticks;
00020
00021 public:
00022 const char *Start(const char * const *param);
00023
00024 void Stop();
00025
00026 void MakeDirty(int left, int top, int width, int height);
00027
00028 void MainLoop();
00029
00030 bool ChangeResolution(int w, int h);
00031
00032 bool ToggleFullscreen(bool fullscreen);
00033 const char *GetName() const { return "null"; }
00034 };
00035
00036 class FVideoDriver_Null: public VideoDriverFactory<FVideoDriver_Null> {
00037 public:
00038 static const int priority = 0;
00039 const char *GetName() { return "null"; }
00040 const char *GetDescription() { return "Null Video Driver"; }
00041 Driver *CreateInstance() { return new VideoDriver_Null(); }
00042 };
00043
00044 #endif