bringing all back together

This commit is contained in:
Hartmut Seichter 2019-01-22 14:16:03 +01:00
parent 8d563cfc22
commit 4ff557d446
18 changed files with 214 additions and 419 deletions

View file

@ -149,7 +149,7 @@ struct shader::impl
void bind(int location,const matrix4x4f& m)
{
glUniformMatrix4fv(location,1,GL_FALSE,m.data()); // TODO transpose?
glUniformMatrix4fv(location,1,GL_FALSE,m.data); // TODO transpose?
}
};