Skip to content

Commit

Permalink
Glutin update: new Context API
Browse files Browse the repository at this point in the history
  • Loading branch information
paulrouget authored and jdm committed May 25, 2019
1 parent 7f61160 commit 53bb2e8
Show file tree
Hide file tree
Showing 4 changed files with 115 additions and 45 deletions.
65 changes: 65 additions & 0 deletions ports/glutin/context.rs
@@ -0,0 +1,65 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */

use glutin::{WindowedContext, NotCurrent, PossiblyCurrent};

pub enum GlContext {
Current(WindowedContext<PossiblyCurrent>),
NotCurrent(WindowedContext<NotCurrent>),
// Used a temporary value as we switch from Current to NotCurrent.
None,
}

impl GlContext {
pub fn window(&self) -> &glutin::Window {
match self {
GlContext::Current(c) => c.window(),
GlContext::NotCurrent(c) => c.window(),
GlContext::None => unreachable!(),
}
}
pub fn make_current(&mut self) {
*self = match std::mem::replace(self, GlContext::None) {
GlContext::Current(c) => {
warn!("Making an already current context current");
GlContext::Current(c)
},
GlContext::NotCurrent(c) => {
let c = unsafe {
c.make_current().expect("Couldn't make window current")
};
GlContext::Current(c)
}
GlContext::None => unreachable!(),
}
}
pub fn make_not_current(&mut self) {
*self = match std::mem::replace(self, GlContext::None) {
GlContext::Current(c) => {
let c = unsafe {
c.make_not_current().expect("Couldn't make window not current")
};
GlContext::NotCurrent(c)
},
GlContext::NotCurrent(c) => {
warn!("Making an already not current context not current");
GlContext::NotCurrent(c)
}
GlContext::None => unreachable!(),
}
}
pub fn swap_buffers(&self) {
match self {
GlContext::Current(c) => {
if let Err(err) = c.swap_buffers() {
warn!("Failed to swap window buffers ({}).", err);
}
},
GlContext::NotCurrent(_) => {
error!("Context is not current. Forgot to call prepare_for_composite?");
},
GlContext::None => unreachable!(),
};
}
}
12 changes: 5 additions & 7 deletions ports/glutin/embedder.rs
Expand Up @@ -9,7 +9,6 @@ use crate::events_loop::EventsLoop;
use gleam::gl;
use glutin;
use glutin::dpi::LogicalSize;
use glutin::{ContextBuilder, GlWindow};
use rust_webvr::GlWindowVRService;
use servo::compositing::windowing::EmbedderMethods;
use servo::embedder_traits::EventLoopWaker;
Expand Down Expand Up @@ -52,14 +51,13 @@ impl EmbedderMethods for EmbedderCallbacks {
.with_dimensions(size)
.with_visibility(false)
.with_multitouch();
let context_builder = ContextBuilder::new()
let context = glutin::ContextBuilder::new()
.with_gl(app::gl_version())
.with_vsync(false); // Assume the browser vsync is the same as the test VR window vsync
let gl_window =
GlWindow::new(window_builder, context_builder, &*self.events_loop.borrow().as_winit())
.expect("Failed to create window.");
.with_vsync(false) // Assume the browser vsync is the same as the test VR window vsync
.build_windowed(window_builder, &*self.events_loop.borrow().as_winit())
.expect("Failed to create window.");
let gl = self.gl.clone();
let (service, heartbeat) = GlWindowVRService::new(name, gl_window, gl);
let (service, heartbeat) = GlWindowVRService::new(name, context, gl);

services.register(Box::new(service));
heartbeats.push(Box::new(heartbeat));
Expand Down
82 changes: 44 additions & 38 deletions ports/glutin/headed_window.rs
Expand Up @@ -5,6 +5,7 @@
//! A glutin window implementation.

use crate::app;
use crate::context::GlContext;
use crate::keyutils::keyboard_event_from_winit;
use crate::window_trait::{WindowPortsMethods, LINE_HEIGHT};
use euclid::{TypedPoint2D, TypedScale, TypedSize2D, TypedVector2D};
Expand All @@ -14,7 +15,7 @@ use glutin::dpi::{LogicalPosition, LogicalSize, PhysicalSize};
use glutin::os::macos::{ActivationPolicy, WindowBuilderExt};
#[cfg(any(target_os = "linux", target_os = "windows"))]
use glutin::Icon;
use glutin::{Api, ContextBuilder, GlContext, GlWindow};
use glutin::Api;
use glutin::{ElementState, KeyboardInput, MouseButton, MouseScrollDelta, TouchPhase};
#[cfg(any(target_os = "linux", target_os = "windows"))]
use image;
Expand Down Expand Up @@ -53,7 +54,7 @@ fn builder_with_platform_options(builder: glutin::WindowBuilder) -> glutin::Wind
}

pub struct Window {
gl_window: GlWindow,
gl_context: RefCell<GlContext>,
screen_size: TypedSize2D<u32, DeviceIndependentPixel>,
inner_size: Cell<TypedSize2D<u32, DeviceIndependentPixel>>,
mouse_down_button: Cell<Option<glutin::MouseButton>>,
Expand Down Expand Up @@ -106,29 +107,27 @@ impl Window {

window_builder = builder_with_platform_options(window_builder);

let mut context_builder = ContextBuilder::new()
let mut context_builder = glutin::ContextBuilder::new()
.with_gl(app::gl_version())
.with_vsync(opts.enable_vsync);

if opts.use_msaa {
context_builder = context_builder.with_multisampling(MULTISAMPLES)
}

let glutin_window = GlWindow::new(window_builder, context_builder, &events_loop)
let context = context_builder
.build_windowed(window_builder, &events_loop)
.expect("Failed to create window.");

#[cfg(any(target_os = "linux", target_os = "windows"))]
{
let icon_bytes = include_bytes!("../../resources/servo64.png");
glutin_window.set_window_icon(Some(load_icon(icon_bytes)));
context.window().set_window_icon(Some(load_icon(icon_bytes)));
}

unsafe {
glutin_window
.context()
.make_current()
.expect("Couldn't make window current");
}
let context = unsafe {
context.make_current().expect("Couldn't make window current")
};

let primary_monitor = events_loop.get_primary_monitor();

Expand All @@ -138,19 +137,20 @@ impl Window {
} = primary_monitor.get_dimensions();
let screen_size = TypedSize2D::new(screen_width as u32, screen_height as u32);
// TODO(ajeffrey): can this fail?
let LogicalSize { width, height } = glutin_window
let LogicalSize { width, height } = context
.window()
.get_inner_size()
.expect("Failed to get window inner size.");
let inner_size = TypedSize2D::new(width as u32, height as u32);

glutin_window.show();
context.window().show();

let gl = match glutin_window.context().get_api() {
let gl = match context.get_api() {
Api::OpenGl => unsafe {
gl::GlFns::load_with(|s| glutin_window.get_proc_address(s) as *const _)
gl::GlFns::load_with(|s| context.get_proc_address(s) as *const _)
},
Api::OpenGlEs => unsafe {
gl::GlesFns::load_with(|s| glutin_window.get_proc_address(s) as *const _)
gl::GlesFns::load_with(|s| context.get_proc_address(s) as *const _)
},
Api::WebGl => unreachable!("webgl is unsupported"),
};
Expand All @@ -159,8 +159,12 @@ impl Window {
gl.clear(gl::COLOR_BUFFER_BIT);
gl.finish();

let mut context = GlContext::Current(context);

context.make_not_current();

let window = Window {
gl_window: glutin_window,
gl_context: RefCell::new(context),
event_queue: RefCell::new(vec![]),
mouse_down_button: Cell::new(None),
mouse_down_point: Cell::new(TypedPoint2D::new(0, 0)),
Expand Down Expand Up @@ -263,7 +267,7 @@ impl Window {
}

fn device_hidpi_factor(&self) -> TypedScale<f32, DeviceIndependentPixel, DevicePixel> {
TypedScale::new(self.gl_window.get_hidpi_factor() as f32)
TypedScale::new(self.gl_context.borrow().window().get_hidpi_factor() as f32)
}

fn servo_hidpi_factor(&self) -> TypedScale<f32, DeviceIndependentPixel, DevicePixel> {
Expand All @@ -289,31 +293,33 @@ impl WindowPortsMethods for Window {
fn page_height(&self) -> f32 {
let dpr = self.servo_hidpi_factor();
let size = self
.gl_window
.gl_context
.borrow()
.window()
.get_inner_size()
.expect("Failed to get window inner size.");
size.height as f32 * dpr.get()
}

fn set_title(&self, title: &str) {
self.gl_window.set_title(title);
self.gl_context.borrow().window().set_title(title);
}

fn set_inner_size(&self, size: DeviceIntSize) {
let size = size.to_f32() / self.device_hidpi_factor();
self.gl_window
self.gl_context.borrow_mut().window()
.set_inner_size(LogicalSize::new(size.width.into(), size.height.into()))
}

fn set_position(&self, point: DeviceIntPoint) {
let point = point.to_f32() / self.device_hidpi_factor();
self.gl_window
self.gl_context.borrow_mut().window()
.set_position(LogicalPosition::new(point.x.into(), point.y.into()))
}

fn set_fullscreen(&self, state: bool) {
if self.fullscreen.get() != state {
self.gl_window
self.gl_context.borrow_mut().window()
.set_fullscreen(Some(self.primary_monitor.clone()));
}
self.fullscreen.set(state);
Expand Down Expand Up @@ -363,15 +369,15 @@ impl WindowPortsMethods for Window {
Cursor::ZoomOut => MouseCursor::ZoomOut,
_ => MouseCursor::Default,
};
self.gl_window.set_cursor(winit_cursor);
self.gl_context.borrow_mut().window().set_cursor(winit_cursor);
}

fn is_animating(&self) -> bool {
self.animation_state.get() == AnimationState::Animating
}

fn id(&self) -> Option<glutin::WindowId> {
Some(self.gl_window.id())
Some(self.gl_context.borrow().window().id())
}

fn winit_event_to_servo_event(&self, event: glutin::WindowEvent) {
Expand Down Expand Up @@ -435,10 +441,7 @@ impl WindowPortsMethods for Window {
self.event_queue.borrow_mut().push(WindowEvent::Quit);
},
glutin::WindowEvent::Resized(size) => {
// size is DeviceIndependentPixel.
// gl_window.resize() takes DevicePixel.
let size = size.to_physical(self.device_hidpi_factor().get() as f64);
self.gl_window.resize(size);
self.gl_context.borrow_mut().window().set_inner_size(size);
// window.set_inner_size() takes DeviceIndependentPixel.
let (width, height) = size.into();
let new_size = TypedSize2D::new(width, height);
Expand All @@ -461,19 +464,25 @@ impl WindowMethods for Window {
// TODO(ajeffrey): can this fail?
let dpr = self.device_hidpi_factor();
let LogicalSize { width, height } = self
.gl_window
.gl_context
.borrow()
.window()
.get_outer_size()
.expect("Failed to get window outer size.");
let LogicalPosition { x, y } = self
.gl_window
.gl_context
.borrow()
.window()
.get_position()
.unwrap_or(LogicalPosition::new(0., 0.));
let win_size = (TypedSize2D::new(width as f32, height as f32) * dpr).to_i32();
let win_origin = (TypedPoint2D::new(x as f32, y as f32) * dpr).to_i32();
let screen = (self.screen_size.to_f32() * dpr).to_i32();

let LogicalSize { width, height } = self
.gl_window
.gl_context
.borrow()
.window()
.get_inner_size()
.expect("Failed to get window inner size.");
let inner_size = (TypedSize2D::new(width as f32, height as f32) * dpr).to_i32();
Expand All @@ -492,19 +501,16 @@ impl WindowMethods for Window {
}

fn present(&self) {
if let Err(err) = self.gl_window.swap_buffers() {
warn!("Failed to swap window buffers ({}).", err);
}
self.gl_context.borrow().swap_buffers();
self.gl_context.borrow_mut().make_not_current();
}

fn set_animation_state(&self, state: AnimationState) {
self.animation_state.set(state);
}

fn prepare_for_composite(&self) -> bool {
if let Err(err) = unsafe { self.gl_window.context().make_current() } {
warn!("Couldn't make window current: {}", err);
}
self.gl_context.borrow_mut().make_current();
true
}
}
Expand Down
1 change: 1 addition & 0 deletions ports/glutin/main2.rs
Expand Up @@ -12,6 +12,7 @@ extern crate sig;

mod app;
mod browser;
mod context;
mod embedder;
mod events_loop;
mod headed_window;
Expand Down

0 comments on commit 53bb2e8

Please sign in to comment.