// Copyright (C) 2016 Jérôme Leclercq // This file is part of the "Nazara Engine - Renderer module" // For conditions of distribution and use, see copyright notice in Config.hpp #pragma once #ifndef NAZARA_RENDERDEVICEINSTANCE_HPP #define NAZARA_RENDERDEVICEINSTANCE_HPP #include #include #include #include #include namespace Nz { class Buffer; class NAZARA_RENDERER_API RenderDevice { public: RenderDevice() = default; virtual ~RenderDevice(); virtual std::unique_ptr InstantiateBuffer(Buffer* parent, BufferType type) = 0; virtual std::unique_ptr InstantiateRenderPipeline(RenderPipelineInfo pipelineInfo) = 0; }; } #include #endif // NAZARA_RENDERDEVICEINSTANCE_HPP