Fixed parameter name

Former-commit-id: 9197c406c3b1be915707a66eae04f5445453f8f5
This commit is contained in:
Lynix
2013-08-10 14:55:49 +02:00
parent 64ceeea544
commit 970cf1afc8

View File

@@ -61,7 +61,7 @@ class NAZARA_API NzShaderProgram : public NzResource, NzNonCopyable
bool LoadFromBinary(const void* buffer, unsigned int size); bool LoadFromBinary(const void* buffer, unsigned int size);
bool LoadFromBinary(const NzByteArray& byteArray); bool LoadFromBinary(const NzByteArray& byteArray);
bool LoadShader(nzShaderType type, const NzString& source); bool LoadShader(nzShaderType type, const NzString& source);
bool LoadShaderFromFile(nzShaderType type, const NzString& source); bool LoadShaderFromFile(nzShaderType type, const NzString& filePath);
bool SendBoolean(int location, bool value) const; bool SendBoolean(int location, bool value) const;
bool SendColor(int location, const NzColor& color) const; bool SendColor(int location, const NzColor& color) const;