2023-02-28 01:15:26 +00:00
|
|
|
// AUTOGENERATED COPYRIGHT HEADER START
|
|
|
|
// Copyright (C) 2021-2023 Michael Fabian 'Xaymar' Dirks <info@xaymar.com>
|
|
|
|
// AUTOGENERATED COPYRIGHT HEADER END
|
2021-11-09 10:33:07 +00:00
|
|
|
|
2022-08-29 10:29:44 +00:00
|
|
|
#include "warning-disable.hpp"
|
2021-11-09 10:33:07 +00:00
|
|
|
#include <memory>
|
2022-08-29 10:29:44 +00:00
|
|
|
#include "warning-enable.hpp"
|
2021-11-09 10:33:07 +00:00
|
|
|
|
|
|
|
namespace streamfx::gfx {
|
|
|
|
class opengl {
|
|
|
|
public /* Singleton */:
|
|
|
|
static std::shared_ptr<streamfx::gfx::opengl> get();
|
|
|
|
|
|
|
|
private:
|
|
|
|
opengl();
|
|
|
|
|
|
|
|
public:
|
|
|
|
~opengl();
|
|
|
|
};
|
|
|
|
} // namespace streamfx::gfx
|