Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update rust-opengles. #2296

Merged
merged 1 commit into from May 5, 2014
Merged
Changes from all commits
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

Update rust-opengles.

This includes changes to move from ~[T] to Vec<T>.
  • Loading branch information
Ms2ger committed May 3, 2014
commit 6295feea161dc09b9062a1f0212a7329fb2479be
@@ -757,7 +757,7 @@ impl IOCompositor {
width: width as u32,
height: height as u32,
color_type: png::RGB8,
pixels: pixels,
pixels: pixels.move_iter().collect(),
};
let res = png::store_png(&img, &path);
assert!(res.is_ok());
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.