Add guard to gaia.scene to log error if the Gaia module was not compiled

Point to correct shader paths
Remove warnings
This commit is contained in:
Alexander Bock
2018-11-20 18:40:04 -05:00
parent 0d2935c43b
commit d37cfa4f18
9 changed files with 77 additions and 73 deletions

View File

@@ -231,7 +231,7 @@ void RenderableBoxGrid::render(const RenderData& data, RendererTasks&){
glEnable(GL_LINE_SMOOTH);
glBindVertexArray(_vaoID);
glDrawArrays(_mode, 0, _varray.size());
glDrawArrays(_mode, 0, static_cast<GLsizei>(_varray.size()));
glBindVertexArray(0);
_gridProgram->deactivate();