aboutsummaryrefslogtreecommitdiffstats
path: root/src/api/android
diff options
context:
space:
mode:
authorPierre Krieger <pierre.krieger1708@gmail.com>2016-01-07 16:01:18 +0100
committerPierre Krieger <pierre.krieger1708@gmail.com>2016-02-10 17:39:35 +0100
commitec76d991adc3522512f07935f78569dc4a9d089b (patch)
tree6a16b4f7559cfb4504b7993df1a0d55632499c5e /src/api/android
parent86dd75f7e9b6078919387c356bca7dd1738d5777 (diff)
downloadglutin-ec76d991adc3522512f07935f78569dc4a9d089b.tar.gz
glutin-ec76d991adc3522512f07935f78569dc4a9d089b.zip
Unlocks platform-specific attributes
Diffstat (limited to 'src/api/android')
-rw-r--r--src/api/android/mod.rs12
1 files changed, 10 insertions, 2 deletions
diff --git a/src/api/android/mod.rs b/src/api/android/mod.rs
index f42caeb..433472c 100644
--- a/src/api/android/mod.rs
+++ b/src/api/android/mod.rs
@@ -65,6 +65,11 @@ impl MonitorId {
}
}
+#[derive(Default)]
+pub struct PlatformSpecificWindowBuilderAttributes;
+#[derive(Default)]
+pub struct PlatformSpecificHeadlessBuilderAttributes;
+
pub struct PollEventsIterator<'a> {
window: &'a Window,
}
@@ -116,7 +121,8 @@ impl<'a> Iterator for WaitEventsIterator<'a> {
impl Window {
pub fn new(win_attribs: &WindowAttributes, pf_reqs: &PixelFormatRequirements,
- opengl: &GlAttributes<&Window>) -> Result<Window, CreationError>
+ opengl: &GlAttributes<&Window>, _: &PlatformSpecificWindowBuilderAttributes)
+ -> Result<Window, CreationError>
{
use std::{mem, ptr};
@@ -302,7 +308,9 @@ pub struct HeadlessContext(EglContext);
impl HeadlessContext {
/// See the docs in the crate root file.
pub fn new(dimensions: (u32, u32), pf_reqs: &PixelFormatRequirements,
- opengl: &GlAttributes<&HeadlessContext>) -> Result<HeadlessContext, CreationError>
+ opengl: &GlAttributes<&HeadlessContext>,
+ _: &PlatformSpecificHeadlessBuilderAttributes)
+ -> Result<HeadlessContext, CreationError>
{
let opengl = opengl.clone().map_sharing(|c| &c.0);
let context = try!(EglContext::new(egl::ffi::egl::Egl, pf_reqs, &opengl,