Add entities for convolutional layers.

This commit is contained in:
2017-11-27 12:25:56 +01:00
parent 8fb01fb346
commit 3231e078b3
3 changed files with 43 additions and 3 deletions

View File

@@ -88,6 +88,6 @@ void FlatLayerVisualisation::render()
glColorPointer(3, GL_FLOAT, 0, colorBuffer.get());
glDrawElements(GL_TRIANGLES, faceCount * 3, GL_UNSIGNED_INT, indexBuffer.get());
glDisable(GL_VERTEX_ARRAY);
glDisable(GL_COLOR_ARRAY);
glDisableClientState(GL_VERTEX_ARRAY);
glDisableClientState(GL_COLOR_ARRAY);
}