Graphics/Material: Fix texture getters

Former-commit-id: 00799529501c489498c4afd7e42195157b74ba22
This commit is contained in:
Lynix
2015-07-02 12:24:04 +02:00
parent 529673ebc1
commit 9a7c356f75
2 changed files with 12 additions and 12 deletions

View File

@@ -67,26 +67,26 @@ class NAZARA_GRAPHICS_API NzMaterial : public NzRefCounted, public NzResource
inline void EnableShadowReceive(bool receiveShadows);
inline void EnableTransform(bool transform);
inline NzTexture* GetAlphaMap() const;
inline const NzTextureRef& GetAlphaMap() const;
inline float GetAlphaThreshold() const;
inline NzColor GetAmbientColor() const;
inline nzRendererComparison GetDepthFunc() const;
inline NzColor GetDiffuseColor() const;
inline NzTexture* GetDiffuseMap() const;
inline const NzTextureRef& GetDiffuseMap() const;
inline NzTextureSampler& GetDiffuseSampler();
inline const NzTextureSampler& GetDiffuseSampler() const;
inline nzBlendFunc GetDstBlend() const;
inline NzTexture* GetEmissiveMap() const;
inline const NzTextureRef& GetEmissiveMap() const;
inline nzFaceSide GetFaceCulling() const;
inline nzFaceFilling GetFaceFilling() const;
inline NzTexture* GetHeightMap() const;
inline NzTexture* GetNormalMap() const;
inline const NzTextureRef& GetHeightMap() const;
inline const NzTextureRef& GetNormalMap() const;
inline const NzRenderStates& GetRenderStates() const;
inline const NzUberShader* GetShader() const;
inline const NzUberShaderInstance* GetShaderInstance(nzUInt32 flags = nzShaderFlags_None) const;
inline float GetShininess() const;
inline NzColor GetSpecularColor() const;
inline NzTexture* GetSpecularMap() const;
inline const NzTextureRef& GetSpecularMap() const;
inline NzTextureSampler& GetSpecularSampler();
inline const NzTextureSampler& GetSpecularSampler() const;
inline nzBlendFunc GetSrcBlend() const;