summaryrefslogtreecommitdiffstats
path: root/examples/integration_opengl/src/scene.rs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/integration_opengl/src/scene.rs')
-rw-r--r--examples/integration_opengl/src/scene.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/integration_opengl/src/scene.rs b/examples/integration_opengl/src/scene.rs
index ccca0d29..a1245bf2 100644
--- a/examples/integration_opengl/src/scene.rs
+++ b/examples/integration_opengl/src/scene.rs
@@ -86,6 +86,8 @@ impl Scene {
pub fn draw(&self, gl: &glow::Context) {
unsafe {
+ gl.bind_vertex_array(Some(self.vertex_array));
+ gl.use_program(Some(self.program));
gl.draw_arrays(glow::TRIANGLES, 0, 3);
}
}