mirror of
https://github.com/Xaymar/obs-StreamFX
synced 2024-11-30 15:23:01 +00:00
4cf2a399f4
These now include all history, which has fixed some headers that used to be wrong.
20 lines
438 B
C++
20 lines
438 B
C++
// AUTOGENERATED COPYRIGHT HEADER START
|
|
// Copyright (C) 2020-2023 Michael Fabian 'Xaymar' Dirks <info@xaymar.com>
|
|
// AUTOGENERATED COPYRIGHT HEADER END
|
|
|
|
#include "warning-disable.hpp"
|
|
#include <memory>
|
|
#include "warning-enable.hpp"
|
|
|
|
namespace streamfx::gfx {
|
|
class opengl {
|
|
public /* Singleton */:
|
|
static std::shared_ptr<streamfx::gfx::opengl> get();
|
|
|
|
private:
|
|
opengl();
|
|
|
|
public:
|
|
~opengl();
|
|
};
|
|
} // namespace streamfx::gfx
|