Added Skyboxes

Former-commit-id: f4153c047d658afb3e42302a34b0263fbac78d88
This commit is contained in:
Lynix
2013-04-06 17:04:56 +02:00
parent f2942e2b3f
commit c3c3d07be0
2 changed files with 293 additions and 0 deletions

View File

@@ -0,0 +1,43 @@
// Copyright (C) 2013 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_SKYBOXBACKGROUND_HPP
#define NAZARA_SKYBOXBACKGROUND_HPP
#include <Nazara/Prerequesites.hpp>
#include <Nazara/Graphics/Background.hpp>
#include <Nazara/Renderer/Texture.hpp>
#include <Nazara/Renderer/TextureSampler.hpp>
class NzIndexBuffer;
class NzShader;
class NzVertexBuffer;
class NAZARA_API NzSkyboxBackground : public NzBackground
{
public:
NzSkyboxBackground();
NzSkyboxBackground(NzTexture* cubemapTexture);
~NzSkyboxBackground();
void Draw(const NzScene* scene) const;
nzBackgroundType GetBackgroundType() const;
NzTexture* GetTexture() const;
const NzTextureSampler& GetTextureSampler();
void SetTexture(NzTexture* cubemapTexture);
void SetTextureSampler(const NzTextureSampler& sampler);
private:
NzTextureRef m_texture;
NzTextureSampler m_sampler;
NzIndexBuffer* m_indexBuffer;
NzShader* m_shader;
NzVertexBuffer* m_vertexBuffer;
};
#endif // NAZARA_SKYBOXBACKGROUND_HPP