2019-12-12 17:32:41 +01:00
|
|
|
// Copyright (C) 2014 Patryk Nadrowski
|
|
|
|
// This file is part of the "Irrlicht Engine".
|
|
|
|
// For conditions of distribution and use, see copyright notice in Irrlicht.h
|
|
|
|
|
|
|
|
#ifndef __C_NSOGL_MANAGER_H_INCLUDED__
|
|
|
|
#define __C_NSOGL_MANAGER_H_INCLUDED__
|
|
|
|
|
|
|
|
#include "IrrCompileConfig.h"
|
|
|
|
|
|
|
|
#ifdef _IRR_COMPILE_WITH_NSOGL_MANAGER_
|
|
|
|
|
|
|
|
#include "SIrrCreationParameters.h"
|
|
|
|
#include "SExposedVideoData.h"
|
|
|
|
#include "IContextManager.h"
|
|
|
|
#include "SColor.h"
|
|
|
|
|
|
|
|
#import <AppKit/NSOpenGL.h>
|
|
|
|
|
|
|
|
namespace irr
|
|
|
|
{
|
|
|
|
namespace video
|
|
|
|
{
|
|
|
|
// NSOpenGL manager.
|
|
|
|
class CNSOGLManager : public IContextManager
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
//! Constructor.
|
|
|
|
CNSOGLManager();
|
|
|
|
|
|
|
|
//! Destructor
|
|
|
|
~CNSOGLManager();
|
|
|
|
|
|
|
|
// Initialize
|
2021-08-27 21:19:09 +02:00
|
|
|
bool initialize(const SIrrlichtCreationParameters& params, const SExposedVideoData& data) IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
// Terminate
|
2021-08-27 21:19:09 +02:00
|
|
|
void terminate() IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
// Create surface.
|
2021-08-27 21:19:09 +02:00
|
|
|
bool generateSurface() IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
// Destroy surface.
|
2021-08-27 21:19:09 +02:00
|
|
|
void destroySurface() IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
// Create context.
|
2021-08-27 21:19:09 +02:00
|
|
|
bool generateContext() IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
// Destroy EGL context.
|
2021-08-27 21:19:09 +02:00
|
|
|
void destroyContext() IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Get current context
|
|
|
|
const SExposedVideoData& getContext() const;
|
|
|
|
|
|
|
|
//! Change render context, disable old and activate new defined by videoData
|
2021-08-27 21:19:09 +02:00
|
|
|
bool activateContext(const SExposedVideoData& videoData, bool restorePrimaryOnZero) IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
// Swap buffers.
|
2021-08-27 21:19:09 +02:00
|
|
|
bool swapBuffers() IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
SIrrlichtCreationParameters Params;
|
|
|
|
SExposedVideoData PrimaryContext;
|
|
|
|
SExposedVideoData CurrentContext;
|
2020-06-18 21:40:56 +02:00
|
|
|
|
2019-12-12 17:32:41 +01:00
|
|
|
NSOpenGLPixelFormat* PixelFormat;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|