mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-02 08:54:15 +00:00
a82675b7d5
Also changes some function params, but this is ok. Some simplifications were also able to be made (ie. killing off strcmps with ==, etc).
27 lines
486 B
C++
27 lines
486 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include "VideoCommon/VideoBackendBase.h"
|
|
|
|
namespace OGL
|
|
{
|
|
|
|
class VideoBackend : public VideoBackendHardware
|
|
{
|
|
bool Initialize(void *&) override;
|
|
void Shutdown() override;
|
|
|
|
std::string GetName() override;
|
|
std::string GetDisplayName() override;
|
|
|
|
void Video_Prepare() override;
|
|
void Video_Cleanup() override;
|
|
|
|
void ShowConfig(void* parent) override;
|
|
|
|
void UpdateFPSDisplay(const std::string&) override;
|
|
unsigned int PeekMessages() override;
|
|
};
|
|
|
|
}
|