mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-05 12:30:42 +00:00
10683e9123
Compiles but doesn't link yet.
27 lines
539 B
C++
27 lines
539 B
C++
#pragma once
|
|
|
|
#include "win32basevideo.h"
|
|
|
|
//==========================================================================
|
|
//
|
|
//
|
|
//
|
|
//==========================================================================
|
|
|
|
class Win32GLVideo : public Win32BaseVideo
|
|
{
|
|
public:
|
|
Win32GLVideo();
|
|
|
|
DFrameBuffer *CreateFrameBuffer() override;
|
|
bool InitHardware(HWND Window, int multisample);
|
|
void Shutdown();
|
|
|
|
protected:
|
|
HGLRC m_hRC;
|
|
|
|
HWND InitDummy();
|
|
void ShutdownDummy(HWND dummy);
|
|
bool SetPixelFormat();
|
|
bool SetupPixelFormat(int multisample);
|
|
};
|