2020-01-03 20:05:16 +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__
|
|
|
|
|
|
|
|
|
|
|
|
#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
|
2022-10-09 20:57:28 +02:00
|
|
|
bool initialize(const SIrrlichtCreationParameters& params, const SExposedVideoData& data) override;
|
2020-01-03 20:05:16 +01:00
|
|
|
|
|
|
|
// Terminate
|
2022-10-09 20:57:28 +02:00
|
|
|
void terminate() override;
|
2020-01-03 20:05:16 +01:00
|
|
|
|
|
|
|
// Create surface.
|
2022-10-09 20:57:28 +02:00
|
|
|
bool generateSurface() override;
|
2020-01-03 20:05:16 +01:00
|
|
|
|
|
|
|
// Destroy surface.
|
2022-10-09 20:57:28 +02:00
|
|
|
void destroySurface() override;
|
2020-01-03 20:05:16 +01:00
|
|
|
|
|
|
|
// Create context.
|
2022-10-09 20:57:28 +02:00
|
|
|
bool generateContext() override;
|
2020-01-03 20:05:16 +01:00
|
|
|
|
|
|
|
// Destroy EGL context.
|
2022-10-09 20:57:28 +02:00
|
|
|
void destroyContext() override;
|
2020-01-03 20:05:16 +01:00
|
|
|
|
|
|
|
//! Get current context
|
|
|
|
const SExposedVideoData& getContext() const;
|
|
|
|
|
|
|
|
//! Change render context, disable old and activate new defined by videoData
|
2022-10-09 20:57:28 +02:00
|
|
|
bool activateContext(const SExposedVideoData& videoData, bool restorePrimaryOnZero) override;
|
2020-01-03 20:05:16 +01:00
|
|
|
|
2021-08-07 21:56:00 +02:00
|
|
|
// Get procedure address.
|
2022-10-09 20:57:28 +02:00
|
|
|
void* getProcAddress(const std::string &procName) override;
|
2021-08-07 21:56:00 +02:00
|
|
|
|
2020-01-03 20:05:16 +01:00
|
|
|
// Swap buffers.
|
2022-10-09 20:57:28 +02:00
|
|
|
bool swapBuffers() override;
|
2020-01-03 20:05:16 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
SIrrlichtCreationParameters Params;
|
|
|
|
SExposedVideoData PrimaryContext;
|
|
|
|
SExposedVideoData CurrentContext;
|
2020-06-20 17:26:29 +02:00
|
|
|
|
2020-01-03 20:05:16 +01:00
|
|
|
NSOpenGLPixelFormat* PixelFormat;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|