Graphics/SkyboxBackground: Fixes

Former-commit-id: ab45a2efa957e33015e4d8dd57ebc8a5d028798c
This commit is contained in:
Lynix
2015-06-24 00:18:38 +02:00
parent bfa2246ca2
commit eddac5c0b6
2 changed files with 6 additions and 9 deletions

View File

@@ -22,6 +22,8 @@ using NzSkyboxBackgroundRef = NzObjectRef<NzSkyboxBackground>;
class NAZARA_GRAPHICS_API NzSkyboxBackground : public NzAbstractBackground
{
friend class NzGraphics;
public:
NzSkyboxBackground(NzTextureRef cubemapTexture = NzTextureRef());
~NzSkyboxBackground() = default;
@@ -44,9 +46,6 @@ class NAZARA_GRAPHICS_API NzSkyboxBackground : public NzAbstractBackground
NzTextureRef m_texture;
NzTextureSampler m_sampler;
NzIndexBufferRef m_indexBuffer;
NzShaderRef m_shader;
NzVertexBufferRef m_vertexBuffer;
};
#include <Nazara/Graphics/SkyboxBackground.inl>