Fixed Shader constructor

This commit is contained in:
Robert Osfield
2009-11-16 17:50:33 +00:00
parent e5bdd460d4
commit 817e4818aa

View File

@@ -137,7 +137,8 @@ Shader::Shader(Type type, const std::string& source) :
}
Shader::Shader(Type type, ShaderBinary* shaderBinary) :
_type(type)
_type(type),
_shaderBinary(shaderBinary)
{
}