diff options
author | Pierre Krieger <pierre.krieger1708@gmail.com> | 2015-06-16 10:15:31 +0200 |
---|---|---|
committer | Pierre Krieger <pierre.krieger1708@gmail.com> | 2015-06-16 10:44:44 +0200 |
commit | f6c26ec593ba96d89cb3476c815d6f33a915bfdd (patch) | |
tree | cc204a0cdfed5c3431f1e26cc2da10048d8c3474 /src/platform/android | |
parent | e48c853b9c7a617bf8ba5f31b5fb2088c90c0ee7 (diff) | |
download | glutin-f6c26ec593ba96d89cb3476c815d6f33a915bfdd.tar.gz glutin-f6c26ec593ba96d89cb3476c815d6f33a915bfdd.zip |
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!() } |