Update for Rustc
This commit is contained in:
parent
ebe32bb2d8
commit
4c5e430dd3
12 changed files with 32 additions and 27 deletions
|
|
@ -25,7 +25,7 @@ fn main() {
|
|||
}
|
||||
|
||||
print!("Please write the number of the monitor to use: ");
|
||||
let num = from_str(stdin().read_line().unwrap().as_slice().trim())
|
||||
let num = stdin().read_line().unwrap().as_slice().trim().parse()
|
||||
.expect("Plase enter a number");
|
||||
let monitor = glutin::get_available_monitors().nth(num).expect("Please enter a valid ID");
|
||||
|
||||
|
|
|
|||
|
|
@ -80,7 +80,7 @@ impl Context {
|
|||
}
|
||||
|
||||
#[cfg(target_os = "android")]
|
||||
static VERTEX_DATA: [f32, ..15] = [
|
||||
static VERTEX_DATA: [f32; 15] = [
|
||||
-0.5, -0.5, 1.0, 0.0, 0.0,
|
||||
0.0, 0.5, 0.0, 1.0, 0.0,
|
||||
0.5, -0.5, 0.0, 0.0, 1.0
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue