// Copyright (C) 2020 Jérôme Leclercq // This file is part of the "Nazara Engine - OpenGL Renderer" // For conditions of distribution and use, see copyright notice in Config.hpp #pragma once #ifndef NAZARA_OPENGLRENDERER_SURFACE_HPP #define NAZARA_OPENGLRENDERER_SURFACE_HPP #include #include #include namespace Nz { class NAZARA_OPENGLRENDERER_API DummySurface : public RenderSurface { public: DummySurface() = default; ~DummySurface() = default; bool Create(WindowHandle handle) override; void Destroy() override; inline WindowHandle GetWindowHandle() const; private: WindowHandle m_handle; }; } #include #endif // NAZARA_OPENGLRENDERER_SURFACE_HPP