aboutsummaryrefslogtreecommitdiffstats
path: root/src/platform/ios
diff options
context:
space:
mode:
authortomaka <pierre.krieger1708@gmail.com>2015-06-29 09:29:46 +0200
committertomaka <pierre.krieger1708@gmail.com>2015-06-29 09:29:46 +0200
commit836e53e55a94f3126ff17a956fe6328198d20f38 (patch)
tree9dcd66615bd0467e89fbcd8d6a00c114679c690d /src/platform/ios
parent164d47b93c7dc95cf52c5ef205a107a8a439e4ef (diff)
parent7053837ac19d5c6159f492e177d417aa994b7d04 (diff)
downloadglutin-836e53e55a94f3126ff17a956fe6328198d20f38.tar.gz
glutin-836e53e55a94f3126ff17a956fe6328198d20f38.zip
Merge pull request #477 from rozaliev/feature/ios
[WIP] ios support
Diffstat (limited to 'src/platform/ios')
-rw-r--r--src/platform/ios/mod.rs47
1 files changed, 47 insertions, 0 deletions
diff --git a/src/platform/ios/mod.rs b/src/platform/ios/mod.rs
new file mode 100644
index 0000000..7cbdd84
--- /dev/null
+++ b/src/platform/ios/mod.rs
@@ -0,0 +1,47 @@
+#![cfg(target_os = "ios")]
+use libc::c_void;
+
+use BuilderAttribs;
+use CreationError;
+use PixelFormat;
+
+pub use api::ios::*;
+
+pub struct HeadlessContext(i32);
+
+impl HeadlessContext {
+ /// See the docs in the crate root file.
+ pub fn new(_builder: BuilderAttribs) -> Result<HeadlessContext, CreationError> {
+ unimplemented!()
+ }
+
+ /// See the docs in the crate root file.
+ pub unsafe fn make_current(&self) {
+ unimplemented!()
+ }
+
+ pub fn swap_buffers(&self) {
+ unimplemented!()
+ }
+
+ /// See the docs in the crate root file.
+ pub fn is_current(&self) -> bool {
+ unimplemented!()
+ }
+
+ /// See the docs in the crate root file.
+ pub fn get_proc_address(&self, _addr: &str) -> *const c_void {
+ unimplemented!()
+ }
+
+ pub fn get_api(&self) -> ::Api {
+ ::Api::OpenGlEs
+ }
+
+ pub fn get_pixel_format(&self) -> PixelFormat {
+ unimplemented!();
+ }
+}
+
+unsafe impl Send for HeadlessContext {}
+unsafe impl Sync for HeadlessContext {}