Added Skyboxes
Former-commit-id: f4153c047d658afb3e42302a34b0263fbac78d88
This commit is contained in:
43
include/Nazara/Graphics/SkyboxBackground.hpp
Normal file
43
include/Nazara/Graphics/SkyboxBackground.hpp
Normal 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
|
||||
Reference in New Issue
Block a user