forked from Mirrorlandia_minetest/irrlicht
59fc4401f1
The commit also establishes a precedent of leaving off the `virtual` keyword in overrides. Although not strictly necessary, I believe this is good for readability because it makes it clear it is an override and not a pure virtual function, and it helps keep line lengths shorter. We should move towards eliminating the macro altogether, but the definition has been left in with a note on deprecation so that in-progress work will not suffer merge conflicts.
54 lines
1.2 KiB
C++
54 lines
1.2 KiB
C++
// Copyright (C) 2022 sfan5
|
|
// This file is part of the "Irrlicht Engine".
|
|
// For conditions of distribution and use, see copyright notice in Irrlicht.h
|
|
|
|
#ifndef __C_SDL_MANAGER_H_INCLUDED__
|
|
#define __C_SDL_MANAGER_H_INCLUDED__
|
|
|
|
#include "IrrCompileConfig.h"
|
|
|
|
#if defined(_IRR_COMPILE_WITH_SDL_DEVICE_) && defined(_IRR_COMPILE_WITH_OPENGL_)
|
|
|
|
#include "IContextManager.h"
|
|
|
|
namespace irr
|
|
{
|
|
class CIrrDeviceSDL;
|
|
|
|
namespace video
|
|
{
|
|
|
|
// Manager for SDL with OpenGL
|
|
class CSDLManager : public IContextManager
|
|
{
|
|
public:
|
|
CSDLManager(CIrrDeviceSDL* device);
|
|
|
|
virtual ~CSDLManager() {}
|
|
|
|
bool initialize(const SIrrlichtCreationParameters& params, const SExposedVideoData& data) override;
|
|
|
|
void terminate() override {};
|
|
bool generateSurface() override { return true; };
|
|
void destroySurface() override {};
|
|
bool generateContext() override { return true; };
|
|
void destroyContext() override {};
|
|
|
|
const SExposedVideoData& getContext() const override;
|
|
|
|
bool activateContext(const SExposedVideoData& videoData, bool restorePrimaryOnZero=false) override;
|
|
|
|
void* getProcAddress(const std::string &procName) override;
|
|
|
|
bool swapBuffers() override;
|
|
|
|
private:
|
|
SExposedVideoData Data;
|
|
CIrrDeviceSDL *SDLDevice;
|
|
};
|
|
}
|
|
}
|
|
|
|
#endif
|
|
#endif
|