2014-09-11 18:13:50 +02:00
|
|
|
extern crate android_glue;
|
|
|
|
|
|
2014-10-24 12:54:58 +02:00
|
|
|
use libc;
|
2015-01-08 20:57:04 +03:00
|
|
|
use std::ffi::{CString};
|
2015-01-04 21:49:00 +03:00
|
|
|
use std::sync::mpsc::{Receiver, channel};
|
2015-01-13 15:21:36 +03:00
|
|
|
use {CreationError, Event, MouseCursor};
|
2014-11-19 06:09:54 +01:00
|
|
|
use CreationError::OsError;
|
|
|
|
|
use events::ElementState::{Pressed, Released};
|
|
|
|
|
use events::Event::{MouseInput, MouseMoved};
|
2015-02-05 16:52:53 +01:00
|
|
|
use events::MouseButton;
|
2014-09-11 18:13:50 +02:00
|
|
|
|
2015-02-22 00:40:23 +11:00
|
|
|
use std::collections::VecDeque;
|
2015-01-01 23:09:16 -08:00
|
|
|
|
2015-02-18 16:49:53 +01:00
|
|
|
use Api;
|
2014-12-28 15:08:41 +01:00
|
|
|
use BuilderAttribs;
|
2015-02-18 16:49:53 +01:00
|
|
|
use GlRequest;
|
2015-03-16 13:52:58 -07:00
|
|
|
use NativeMonitorID;
|
2014-11-26 08:15:24 +10:00
|
|
|
|
2014-09-11 18:13:50 +02:00
|
|
|
pub struct Window {
|
2014-09-13 09:01:21 +02:00
|
|
|
display: ffi::egl::types::EGLDisplay,
|
|
|
|
|
context: ffi::egl::types::EGLContext,
|
|
|
|
|
surface: ffi::egl::types::EGLSurface,
|
2014-11-17 13:32:28 +04:00
|
|
|
event_rx: Receiver<android_glue::Event>,
|
2014-09-11 18:13:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub struct MonitorID;
|
|
|
|
|
|
|
|
|
|
mod ffi;
|
|
|
|
|
|
2015-02-22 00:40:23 +11:00
|
|
|
pub fn get_available_monitors() -> VecDeque <MonitorID> {
|
|
|
|
|
let mut rb = VecDeque::new();
|
2015-01-04 21:49:00 +03:00
|
|
|
rb.push_back(MonitorID);
|
2015-01-01 23:09:16 -08:00
|
|
|
rb
|
2014-09-11 18:13:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn get_primary_monitor() -> MonitorID {
|
|
|
|
|
MonitorID
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl MonitorID {
|
|
|
|
|
pub fn get_name(&self) -> Option<String> {
|
|
|
|
|
Some("Primary".to_string())
|
|
|
|
|
}
|
|
|
|
|
|
2015-03-16 13:52:58 -07:00
|
|
|
pub fn get_native_identifier(&self) -> NativeMonitorID {
|
|
|
|
|
NativeMonitorID::Unavailable
|
|
|
|
|
}
|
|
|
|
|
|
2015-01-13 15:21:36 +03:00
|
|
|
pub fn get_dimensions(&self) -> (u32, u32) {
|
2014-09-11 18:13:50 +02:00
|
|
|
unimplemented!()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-11-26 08:15:24 +10:00
|
|
|
#[cfg(feature = "headless")]
|
2015-01-13 15:21:36 +03:00
|
|
|
pub struct HeadlessContext(i32);
|
2014-11-26 08:15:24 +10:00
|
|
|
|
|
|
|
|
#[cfg(feature = "headless")]
|
|
|
|
|
impl HeadlessContext {
|
|
|
|
|
/// See the docs in the crate root file.
|
2014-12-28 15:08:41 +01:00
|
|
|
pub fn new(_builder: BuilderAttribs) -> Result<HeadlessContext, CreationError> {
|
2014-11-26 08:15:24 +10:00
|
|
|
unimplemented!()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// See the docs in the crate root file.
|
|
|
|
|
pub unsafe fn make_current(&self) {
|
|
|
|
|
unimplemented!()
|
|
|
|
|
}
|
|
|
|
|
|
2015-03-04 07:38:55 +01:00
|
|
|
/// See the docs in the crate root file.
|
|
|
|
|
pub fn is_current(&self) -> bool {
|
|
|
|
|
unimplemented!()
|
|
|
|
|
}
|
|
|
|
|
|
2014-11-26 08:15:24 +10:00
|
|
|
/// See the docs in the crate root file.
|
2014-11-26 15:21:58 +10:00
|
|
|
pub fn get_proc_address(&self, _addr: &str) -> *const () {
|
2014-11-26 08:15:24 +10:00
|
|
|
unimplemented!()
|
|
|
|
|
}
|
2014-12-19 11:27:03 +10:00
|
|
|
|
|
|
|
|
pub fn get_api(&self) -> ::Api {
|
2015-01-19 11:59:34 +10:00
|
|
|
::Api::OpenGlEs
|
2014-12-19 11:27:03 +10:00
|
|
|
}
|
2014-11-26 08:15:24 +10:00
|
|
|
}
|
|
|
|
|
|
2014-12-29 22:56:15 +01:00
|
|
|
#[cfg(feature = "headless")]
|
|
|
|
|
unsafe impl Send for HeadlessContext {}
|
|
|
|
|
#[cfg(feature = "headless")]
|
|
|
|
|
unsafe impl Sync for HeadlessContext {}
|
|
|
|
|
|
2015-02-10 13:59:20 +10:00
|
|
|
pub struct PollEventsIterator<'a> {
|
|
|
|
|
window: &'a Window,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl<'a> Iterator for PollEventsIterator<'a> {
|
|
|
|
|
type Item = Event;
|
|
|
|
|
|
|
|
|
|
fn next(&mut self) -> Option<Event> {
|
|
|
|
|
match self.window.event_rx.try_recv() {
|
|
|
|
|
Ok(event) => {
|
2015-02-22 22:58:08 +03:00
|
|
|
match event {
|
|
|
|
|
android_glue::Event::EventDown => Some(MouseInput(Pressed, MouseButton::Left)),
|
|
|
|
|
android_glue::Event::EventUp => Some(MouseInput(Released, MouseButton::Left)),
|
|
|
|
|
android_glue::Event::EventMove(x, y) => Some(MouseMoved((x as i32, y as i32))),
|
|
|
|
|
_ => None,
|
|
|
|
|
}
|
2015-02-10 13:59:20 +10:00
|
|
|
}
|
|
|
|
|
Err(_) => {
|
|
|
|
|
None
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub struct WaitEventsIterator<'a> {
|
|
|
|
|
window: &'a Window,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl<'a> Iterator for WaitEventsIterator<'a> {
|
|
|
|
|
type Item = Event;
|
|
|
|
|
|
|
|
|
|
fn next(&mut self) -> Option<Event> {
|
|
|
|
|
use std::time::Duration;
|
|
|
|
|
use std::old_io::timer;
|
|
|
|
|
|
|
|
|
|
loop {
|
|
|
|
|
// calling poll_events()
|
|
|
|
|
if let Some(ev) = self.window.poll_events().next() {
|
|
|
|
|
return Some(ev);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// TODO: Implement a proper way of sleeping on the event queue
|
|
|
|
|
timer::sleep(Duration::milliseconds(16));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-11 18:13:50 +02:00
|
|
|
impl Window {
|
2014-12-28 15:08:41 +01:00
|
|
|
pub fn new(builder: BuilderAttribs) -> Result<Window, CreationError> {
|
2014-09-11 18:13:50 +02:00
|
|
|
use std::{mem, ptr};
|
|
|
|
|
|
2014-11-24 20:13:32 +01:00
|
|
|
if builder.sharing.is_some() {
|
|
|
|
|
unimplemented!()
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-11 18:13:50 +02:00
|
|
|
let native_window = unsafe { android_glue::get_native_window() };
|
|
|
|
|
if native_window.is_null() {
|
2014-11-05 16:42:18 +01:00
|
|
|
return Err(OsError(format!("Android's native window is null")));
|
2014-09-11 18:13:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let display = unsafe {
|
2014-09-13 09:01:21 +02:00
|
|
|
let display = ffi::egl::GetDisplay(mem::transmute(ffi::egl::DEFAULT_DISPLAY));
|
2014-09-11 18:13:50 +02:00
|
|
|
if display.is_null() {
|
2014-11-05 16:42:18 +01:00
|
|
|
return Err(OsError("No EGL display connection available".to_string()));
|
2014-09-11 18:13:50 +02:00
|
|
|
}
|
|
|
|
|
display
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
android_glue::write_log("eglGetDisplay succeeded");
|
|
|
|
|
|
|
|
|
|
let (_major, _minor) = unsafe {
|
2014-09-13 09:01:21 +02:00
|
|
|
let mut major: ffi::egl::types::EGLint = mem::uninitialized();
|
|
|
|
|
let mut minor: ffi::egl::types::EGLint = mem::uninitialized();
|
2014-09-11 18:13:50 +02:00
|
|
|
|
2014-09-13 09:01:21 +02:00
|
|
|
if ffi::egl::Initialize(display, &mut major, &mut minor) == 0 {
|
2014-11-05 16:42:18 +01:00
|
|
|
return Err(OsError(format!("eglInitialize failed")))
|
2014-09-11 18:13:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
(major, minor)
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
android_glue::write_log("eglInitialize succeeded");
|
|
|
|
|
|
2014-11-26 15:21:58 +10:00
|
|
|
let use_gles2 = match builder.gl_version {
|
2015-02-18 16:49:53 +01:00
|
|
|
GlRequest::Specific(Api::OpenGlEs, (2, _)) => true,
|
|
|
|
|
GlRequest::Specific(Api::OpenGlEs, _) => false,
|
|
|
|
|
GlRequest::Specific(_, _) => panic!("Only OpenGL ES is supported"), // FIXME: return a result
|
|
|
|
|
GlRequest::GlThenGles { opengles_version: (2, _), .. } => true,
|
2014-11-26 15:21:58 +10:00
|
|
|
_ => false,
|
|
|
|
|
};
|
|
|
|
|
|
2015-02-08 02:32:29 +03:00
|
|
|
let mut attribute_list = vec!();
|
2014-09-11 18:13:50 +02:00
|
|
|
|
2015-02-08 02:32:29 +03:00
|
|
|
if use_gles2 {
|
|
|
|
|
attribute_list.push_all(&[
|
|
|
|
|
ffi::egl::RENDERABLE_TYPE as i32,
|
|
|
|
|
ffi::egl::OPENGL_ES2_BIT as i32,
|
|
|
|
|
]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
let (red, green, blue) = match builder.color_bits.unwrap_or(24) {
|
|
|
|
|
24 => (8, 8, 8),
|
|
|
|
|
16 => (6, 5, 6),
|
|
|
|
|
_ => panic!("Bad color_bits"),
|
|
|
|
|
};
|
|
|
|
|
attribute_list.push_all(&[ffi::egl::RED_SIZE as i32, red]);
|
|
|
|
|
attribute_list.push_all(&[ffi::egl::GREEN_SIZE as i32, green]);
|
|
|
|
|
attribute_list.push_all(&[ffi::egl::BLUE_SIZE as i32, blue]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
attribute_list.push_all(&[
|
|
|
|
|
ffi::egl::DEPTH_SIZE as i32,
|
|
|
|
|
builder.depth_bits.unwrap_or(8) as i32,
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
attribute_list.push(ffi::egl::NONE as i32);
|
|
|
|
|
|
|
|
|
|
let config = unsafe {
|
2014-09-13 09:01:21 +02:00
|
|
|
let mut num_config: ffi::egl::types::EGLint = mem::uninitialized();
|
|
|
|
|
let mut config: ffi::egl::types::EGLConfig = mem::uninitialized();
|
|
|
|
|
if ffi::egl::ChooseConfig(display, attribute_list.as_ptr(), &mut config, 1,
|
|
|
|
|
&mut num_config) == 0
|
2014-09-11 18:13:50 +02:00
|
|
|
{
|
2014-11-05 16:42:18 +01:00
|
|
|
return Err(OsError(format!("eglChooseConfig failed")))
|
2014-09-11 18:13:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if num_config <= 0 {
|
2014-11-05 16:42:18 +01:00
|
|
|
return Err(OsError(format!("eglChooseConfig returned no available config")))
|
2014-09-11 18:13:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
config
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
android_glue::write_log("eglChooseConfig succeeded");
|
|
|
|
|
|
|
|
|
|
let context = unsafe {
|
2014-11-26 15:21:58 +10:00
|
|
|
let mut context_attributes = vec!();
|
|
|
|
|
if use_gles2 {
|
2014-11-26 17:10:24 +04:00
|
|
|
context_attributes.push_all(&[ffi::egl::CONTEXT_CLIENT_VERSION as i32, 2]);
|
2014-11-26 15:21:58 +10:00
|
|
|
}
|
|
|
|
|
context_attributes.push(ffi::egl::NONE as i32);
|
|
|
|
|
|
|
|
|
|
let context = ffi::egl::CreateContext(display, config, ptr::null(),
|
|
|
|
|
context_attributes.as_ptr());
|
2014-09-11 18:13:50 +02:00
|
|
|
if context.is_null() {
|
2014-11-05 16:42:18 +01:00
|
|
|
return Err(OsError(format!("eglCreateContext failed")))
|
2014-09-11 18:13:50 +02:00
|
|
|
}
|
|
|
|
|
context
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
android_glue::write_log("eglCreateContext succeeded");
|
|
|
|
|
|
|
|
|
|
let surface = unsafe {
|
2014-09-13 09:01:21 +02:00
|
|
|
let surface = ffi::egl::CreateWindowSurface(display, config, native_window, ptr::null());
|
2014-09-11 18:13:50 +02:00
|
|
|
if surface.is_null() {
|
2014-11-05 16:42:18 +01:00
|
|
|
return Err(OsError(format!("eglCreateWindowSurface failed")))
|
2014-09-11 18:13:50 +02:00
|
|
|
}
|
|
|
|
|
surface
|
|
|
|
|
};
|
2014-11-26 08:15:24 +10:00
|
|
|
|
2014-09-11 18:13:50 +02:00
|
|
|
android_glue::write_log("eglCreateWindowSurface succeeded");
|
|
|
|
|
|
2014-11-17 13:32:28 +04:00
|
|
|
let (tx, rx) = channel();
|
|
|
|
|
android_glue::add_sender(tx);
|
|
|
|
|
|
2014-09-11 18:13:50 +02:00
|
|
|
Ok(Window {
|
|
|
|
|
display: display,
|
|
|
|
|
context: context,
|
|
|
|
|
surface: surface,
|
2014-11-17 13:32:28 +04:00
|
|
|
event_rx: rx,
|
2014-09-11 18:13:50 +02:00
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn is_closed(&self) -> bool {
|
|
|
|
|
false
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn set_title(&self, _: &str) {
|
|
|
|
|
}
|
|
|
|
|
|
2014-11-01 09:02:01 +01:00
|
|
|
pub fn show(&self) {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn hide(&self) {
|
|
|
|
|
}
|
|
|
|
|
|
2015-01-13 15:21:36 +03:00
|
|
|
pub fn get_position(&self) -> Option<(i32, i32)> {
|
2014-09-11 18:13:50 +02:00
|
|
|
None
|
|
|
|
|
}
|
|
|
|
|
|
2015-01-13 15:21:36 +03:00
|
|
|
pub fn set_position(&self, _x: i32, _y: i32) {
|
2014-09-11 18:13:50 +02:00
|
|
|
}
|
|
|
|
|
|
2015-01-13 15:21:36 +03:00
|
|
|
pub fn get_inner_size(&self) -> Option<(u32, u32)> {
|
2014-09-11 18:13:50 +02:00
|
|
|
let native_window = unsafe { android_glue::get_native_window() };
|
|
|
|
|
|
|
|
|
|
if native_window.is_null() {
|
|
|
|
|
None
|
|
|
|
|
} else {
|
|
|
|
|
Some((
|
2015-01-13 15:21:36 +03:00
|
|
|
unsafe { ffi::ANativeWindow_getWidth(native_window) } as u32,
|
|
|
|
|
unsafe { ffi::ANativeWindow_getHeight(native_window) } as u32
|
2014-09-11 18:13:50 +02:00
|
|
|
))
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-01-13 15:21:36 +03:00
|
|
|
pub fn get_outer_size(&self) -> Option<(u32, u32)> {
|
2014-09-11 18:13:50 +02:00
|
|
|
self.get_inner_size()
|
|
|
|
|
}
|
|
|
|
|
|
2015-01-13 15:21:36 +03:00
|
|
|
pub fn set_inner_size(&self, _x: u32, _y: u32) {
|
2014-09-11 18:13:50 +02:00
|
|
|
}
|
|
|
|
|
|
2014-12-17 14:49:11 +10:00
|
|
|
pub fn create_window_proxy(&self) -> WindowProxy {
|
|
|
|
|
WindowProxy
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-10 13:59:20 +10:00
|
|
|
pub fn poll_events(&self) -> PollEventsIterator {
|
|
|
|
|
PollEventsIterator {
|
|
|
|
|
window: self
|
2014-11-17 13:32:28 +04:00
|
|
|
}
|
2014-09-11 18:13:50 +02:00
|
|
|
}
|
|
|
|
|
|
2015-02-10 13:59:20 +10:00
|
|
|
pub fn wait_events(&self) -> WaitEventsIterator {
|
|
|
|
|
WaitEventsIterator {
|
|
|
|
|
window: self
|
|
|
|
|
}
|
2014-12-26 01:29:54 +03:00
|
|
|
}
|
|
|
|
|
|
2014-09-11 18:13:50 +02:00
|
|
|
pub fn make_current(&self) {
|
|
|
|
|
unsafe {
|
2014-09-13 09:01:21 +02:00
|
|
|
ffi::egl::MakeCurrent(self.display, self.surface, self.surface, self.context);
|
2014-09-11 18:13:50 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-03-04 07:38:55 +01:00
|
|
|
pub fn is_current(&self) -> bool {
|
|
|
|
|
unsafe { ffi::egl::GetCurrentContext() == self.context }
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-11 18:13:50 +02:00
|
|
|
pub fn get_proc_address(&self, addr: &str) -> *const () {
|
2015-01-23 19:24:42 +01:00
|
|
|
let addr = CString::from_slice(addr.as_bytes());
|
2015-02-22 01:17:47 +11:00
|
|
|
let addr = addr.as_ptr();
|
2014-09-11 18:13:50 +02:00
|
|
|
unsafe {
|
2015-01-08 20:57:04 +03:00
|
|
|
ffi::egl::GetProcAddress(addr) as *const ()
|
2014-09-11 18:13:50 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn swap_buffers(&self) {
|
|
|
|
|
unsafe {
|
2014-09-13 09:01:21 +02:00
|
|
|
ffi::egl::SwapBuffers(self.display, self.surface);
|
2014-09-11 18:13:50 +02:00
|
|
|
}
|
|
|
|
|
}
|
2014-10-24 15:20:25 +10:00
|
|
|
|
|
|
|
|
pub fn platform_display(&self) -> *mut libc::c_void {
|
2014-10-25 10:31:25 +02:00
|
|
|
self.display as *mut libc::c_void
|
2014-10-24 15:20:25 +10:00
|
|
|
}
|
2014-11-18 17:55:26 +01:00
|
|
|
|
2015-02-20 12:32:40 -08:00
|
|
|
pub fn platform_window(&self) -> *mut libc::c_void {
|
|
|
|
|
unimplemented!()
|
|
|
|
|
}
|
|
|
|
|
|
2014-11-18 17:55:26 +01:00
|
|
|
pub fn get_api(&self) -> ::Api {
|
|
|
|
|
::Api::OpenGlEs
|
|
|
|
|
}
|
2014-12-16 15:49:22 +10:00
|
|
|
|
2015-01-13 15:21:36 +03:00
|
|
|
pub fn set_window_resize_callback(&mut self, _: Option<fn(u32, u32)>) {
|
2014-12-16 15:49:22 +10:00
|
|
|
}
|
2015-01-12 16:22:37 -08:00
|
|
|
|
2015-01-13 15:21:36 +03:00
|
|
|
pub fn set_cursor(&self, _: MouseCursor) {
|
2015-01-12 16:22:37 -08:00
|
|
|
}
|
2014-12-19 11:27:03 +10:00
|
|
|
|
|
|
|
|
pub fn hidpi_factor(&self) -> f32 {
|
|
|
|
|
1.0
|
|
|
|
|
}
|
2015-03-10 10:29:07 +01:00
|
|
|
|
|
|
|
|
pub fn set_cursor_position(&self, x: i32, y: i32) -> Result<(), ()> {
|
|
|
|
|
unimplemented!();
|
|
|
|
|
}
|
2014-09-11 18:13:50 +02:00
|
|
|
}
|
|
|
|
|
|
2014-12-29 22:56:15 +01:00
|
|
|
unsafe impl Send for Window {}
|
|
|
|
|
unsafe impl Sync for Window {}
|
|
|
|
|
|
2014-12-17 14:49:11 +10:00
|
|
|
#[cfg(feature = "window")]
|
2015-01-03 23:11:59 +01:00
|
|
|
#[derive(Clone)]
|
2014-12-17 14:49:11 +10:00
|
|
|
pub struct WindowProxy;
|
|
|
|
|
|
|
|
|
|
impl WindowProxy {
|
|
|
|
|
pub fn wakeup_event_loop(&self) {
|
2014-12-19 05:00:43 +10:00
|
|
|
unimplemented!()
|
2014-12-17 14:49:11 +10:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-11 18:13:50 +02:00
|
|
|
#[unsafe_destructor]
|
|
|
|
|
impl Drop for Window {
|
|
|
|
|
fn drop(&mut self) {
|
|
|
|
|
use std::ptr;
|
|
|
|
|
|
|
|
|
|
unsafe {
|
2015-02-18 08:58:37 +01:00
|
|
|
// we don't call MakeCurrent(0, 0) because we are not sure that the context
|
|
|
|
|
// is still the current one
|
2014-09-11 18:13:50 +02:00
|
|
|
android_glue::write_log("Destroying gl-init window");
|
2014-09-13 09:01:21 +02:00
|
|
|
ffi::egl::DestroySurface(self.display, self.surface);
|
|
|
|
|
ffi::egl::DestroyContext(self.display, self.context);
|
|
|
|
|
ffi::egl::Terminate(self.display);
|
2014-09-11 18:13:50 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|