30 lines
422 B
C++
30 lines
422 B
C++
|
|
#ifndef OGL_VIDEO_BACKEND_H_
|
|
#define OGL_VIDEO_BACKEND_H_
|
|
|
|
#include "VideoBackendBase.h"
|
|
|
|
namespace OGL
|
|
{
|
|
|
|
class VideoBackend : public VideoBackendHardware
|
|
{
|
|
bool Initialize(void *&);
|
|
void Shutdown();
|
|
|
|
std::string GetName();
|
|
std::string GetDisplayName();
|
|
|
|
void Video_Prepare();
|
|
void Video_Cleanup();
|
|
|
|
void ShowConfig(void* parent);
|
|
|
|
void UpdateFPSDisplay(const char*);
|
|
unsigned int PeekMessages();
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|