mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-05 20:41:06 +00:00
10683e9123
Compiles but doesn't link yet.
33 lines
519 B
C++
33 lines
519 B
C++
#pragma once
|
|
|
|
#include "v_video.h"
|
|
|
|
//==========================================================================
|
|
//
|
|
//
|
|
//
|
|
//==========================================================================
|
|
|
|
class Win32BaseVideo : public IVideo
|
|
{
|
|
public:
|
|
Win32BaseVideo();
|
|
|
|
void DumpAdapters();
|
|
|
|
HDC m_hDC;
|
|
|
|
protected:
|
|
HMODULE hmRender;
|
|
|
|
char m_DisplayDeviceBuffer[CCHDEVICENAME];
|
|
char *m_DisplayDeviceName;
|
|
HMONITOR m_hMonitor;
|
|
|
|
HWND m_Window;
|
|
|
|
void GetDisplayDeviceName();
|
|
public:
|
|
virtual void Shutdown() = 0;
|
|
|
|
};
|