mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-14 08:31:23 +00:00
b61ef3a107
- removed gl_vid_compatibility. With the bump to 1.4 no hardware requiring this flag is supported anymore. - disabled 16 bit framebuffers for the same reason. As a conseqence all code for rendering without stencil could also be removed.
82 lines
1.7 KiB
C++
82 lines
1.7 KiB
C++
#ifndef __SDLGLVIDEO_H__
|
|
#define __SDLGLVIDEO_H__
|
|
|
|
#include "hardware.h"
|
|
#include "v_video.h"
|
|
#include <SDL.h>
|
|
#include "gl/system/gl_system.h"
|
|
|
|
EXTERN_CVAR (Float, dimamount)
|
|
EXTERN_CVAR (Color, dimcolor)
|
|
|
|
struct FRenderer;
|
|
FRenderer *gl_CreateInterface();
|
|
|
|
class SDLGLVideo : public IVideo
|
|
{
|
|
public:
|
|
SDLGLVideo (int parm);
|
|
~SDLGLVideo ();
|
|
|
|
EDisplayType GetDisplayType () { return DISPLAY_Both; }
|
|
void SetWindowedScale (float scale);
|
|
|
|
DFrameBuffer *CreateFrameBuffer (int width, int height, bool fs, DFrameBuffer *old);
|
|
|
|
void StartModeIterator (int bits, bool fs);
|
|
bool NextMode (int *width, int *height, bool *letterbox);
|
|
bool SetResolution (int width, int height, int bits);
|
|
|
|
bool SetupPixelFormat(bool allowsoftware, int multisample);
|
|
bool InitHardware (bool allowsoftware, int multisample);
|
|
|
|
private:
|
|
int IteratorMode;
|
|
int IteratorBits;
|
|
bool IteratorFS;
|
|
};
|
|
class SDLGLFB : public DFrameBuffer
|
|
{
|
|
DECLARE_CLASS(SDLGLFB, DFrameBuffer)
|
|
public:
|
|
// this must have the same parameters as the Windows version, even if they are not used!
|
|
SDLGLFB (void *hMonitor, int width, int height, int, int, bool fullscreen);
|
|
~SDLGLFB ();
|
|
|
|
void ForceBuffering (bool force);
|
|
bool Lock(bool buffered);
|
|
bool Lock ();
|
|
void Unlock();
|
|
bool IsLocked ();
|
|
|
|
bool IsValid ();
|
|
bool IsFullscreen ();
|
|
|
|
virtual void SetVSync( bool vsync );
|
|
void SwapBuffers();
|
|
|
|
void NewRefreshRate ();
|
|
|
|
friend class SDLGLVideo;
|
|
|
|
//[C]
|
|
int GetTrueHeight() { return GetHeight();}
|
|
|
|
protected:
|
|
bool CanUpdate();
|
|
void SetGammaTable(WORD *tbl);
|
|
void InitializeState();
|
|
|
|
SDLGLFB () {}
|
|
BYTE GammaTable[3][256];
|
|
bool UpdatePending;
|
|
|
|
SDL_Surface *Screen;
|
|
|
|
void UpdateColors ();
|
|
|
|
int m_Lock;
|
|
Uint16 m_origGamma[3][256];
|
|
bool m_supportsGamma;
|
|
};
|
|
#endif
|