diff options
author | tomaka <pierre.krieger1708@gmail.com> | 2015-06-17 07:36:00 +0200 |
---|---|---|
committer | tomaka <pierre.krieger1708@gmail.com> | 2015-06-17 07:36:00 +0200 |
commit | 90b28c205219df732d83e403f98abab31e6e52d4 (patch) | |
tree | 1008d78cf5c7280c9ddeea512033a92e07f989d1 /src/platform/android | |
parent | 2d1e503f77434fc0dd3f2715625ce1a972fdf62f (diff) | |
parent | f6c26ec593ba96d89cb3476c815d6f33a915bfdd (diff) | |
download | glutin-90b28c205219df732d83e403f98abab31e6e52d4.tar.gz glutin-90b28c205219df732d83e403f98abab31e6e52d4.zip |
Merge pull request #486 from tomaka/context-error
Handle errors from MakeCurrent and SwapBuffers
Diffstat (limited to 'src/platform/android')
-rw-r--r-- | src/platform/android/mod.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/platform/android/mod.rs b/src/platform/android/mod.rs index a1b9416..50f554b 100644 --- a/src/platform/android/mod.rs +++ b/src/platform/android/mod.rs @@ -2,6 +2,8 @@ pub use api::android::*; +use ContextError; + pub struct HeadlessContext(i32); impl HeadlessContext { @@ -11,7 +13,7 @@ impl HeadlessContext { } /// See the docs in the crate root file. - pub unsafe fn make_current(&self) { + pub unsafe fn make_current(&self) -> Result<(), ContextError> { unimplemented!() } |