Files
NazaraEngine/include/Nazara/Graphics/DeferredForwardPass.hpp
Lynix df8da275c4 Switch from Nz prefix to namespace Nz
What a huge commit


Former-commit-id: 38ac5eebf70adc1180f571f6006192d28fb99897
2015-09-25 19:20:05 +02:00

32 lines
829 B
C++

// Copyright (C) 2015 Jérôme Leclercq
// This file is part of the "Nazara Engine - Graphics module"
// For conditions of distribution and use, see copyright notice in Config.hpp
#pragma once
#ifndef NAZARA_DEFERREDFORWARDPASS_HPP
#define NAZARA_DEFERREDFORWARDPASS_HPP
#include <Nazara/Prerequesites.hpp>
#include <Nazara/Graphics/DeferredRenderPass.hpp>
namespace Nz
{
class ForwardRenderTechnique;
class NAZARA_GRAPHICS_API DeferredForwardPass : public DeferredRenderPass
{
public:
DeferredForwardPass();
virtual ~DeferredForwardPass();
void Initialize(DeferredRenderTechnique* technique);
bool Process(const SceneData& sceneData, unsigned int workTexture, unsigned sceneTexture) const;
protected:
const ForwardRenderTechnique* m_forwardTechnique;
};
}
#endif // NAZARA_DEFERREDFORWARDPASS_HPP