Fix some overlong lines.

This commit is contained in:
Ms2ger 2015-05-14 13:26:13 +02:00
parent 40a91d6227
commit d84c3e7a30
7 changed files with 30 additions and 13 deletions

View file

@ -399,8 +399,12 @@ extern fn set_usage(window: *mut GonkNativeWindow,
println!("Setting usage flags to {}", usage);
unsafe {
(*window).usage = usage;
(*window).bufs[0] = Some(GonkNativeWindowBuffer::new((*window).alloc_dev, (*window).width, (*window).height, (*window).format, (*window).usage));
(*window).bufs[1] = Some(GonkNativeWindowBuffer::new((*window).alloc_dev, (*window).width, (*window).height, (*window).format, (*window).usage));
(*window).bufs[0] = Some(GonkNativeWindowBuffer::new(
(*window).alloc_dev, (*window).width, (*window).height,
(*window).format, (*window).usage));
(*window).bufs[1] = Some(GonkNativeWindowBuffer::new(
(*window).alloc_dev, (*window).width, (*window).height,
(*window).format, (*window).usage));
}
0
}