Make ToTexture public

This commit is contained in:
Colin Sherratt
2014-09-26 02:30:03 -04:00
parent abec593eda
commit ae41a150b5
2 changed files with 4 additions and 4 deletions

View File

@ -3,13 +3,13 @@
name = "ovr"
version = "0.1.0"
authors = [
"Colin Sherratt",
"Erick Tryzelaar"
"Colin Sherratt",
"Erick Tryzelaar"
]
build = "./scripts/compile-for-cargo"
[[lib]]
[lib]
name = "ovr"
path = "src/oculus-vr/lib.rs"

View File

@ -1047,7 +1047,7 @@ impl FrameTiming {
}
}
trait ToTexture {
pub trait ToTexture {
fn to_texture(&self) -> ll::Texture;
}