aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
authorbnewbold <bnewbold@robocracy.org>2016-05-06 16:34:12 -0400
committerbnewbold <bnewbold@robocracy.org>2016-05-06 16:34:12 -0400
commit6ec17f90b2c3a5a113dc839c32e9200a17a8aa21 (patch)
treeb50855a488ffb09eb38e6bcaa7c712adc11ef4e3 /src/main.rs
parentf2649a1733ba9ace0e4cb2f8dd95371cad370456 (diff)
downloadexuberant-hacks-6ec17f90b2c3a5a113dc839c32e9200a17a8aa21.tar.gz
exuberant-hacks-6ec17f90b2c3a5a113dc839c32e9200a17a8aa21.zip
fixed up model_c2rs so hide works
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index a4fd789..186cbb0 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -5,6 +5,7 @@ extern crate image;
mod util;
mod cow_face;
+mod cow_hide;
fn run() {
@@ -21,7 +22,7 @@ fn run() {
let indices = glium::index::NoIndices(glium::index::PrimitiveType::TrianglesList);
let vertices = glium::VertexBuffer::new(
- &display, &cow_face::cow_face_vertices).unwrap();
+ &display, &cow_hide::cow_hide_vertices).unwrap();
let vertex_shader_src = r#"
#version 140