Make Application and Sandbox return a Result
This commit is contained in:
parent
faa12382d4
commit
c1f79b40cf
40 changed files with 166 additions and 58 deletions
|
|
@ -26,7 +26,7 @@ pub(crate) use iced_graphics::Transformation;
|
|||
#[doc(no_inline)]
|
||||
pub use widget::*;
|
||||
|
||||
pub use iced_graphics::Viewport;
|
||||
pub use iced_graphics::{Error, Viewport};
|
||||
pub use iced_native::{
|
||||
Background, Color, Command, HorizontalAlignment, Length, Vector,
|
||||
VerticalAlignment,
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
use crate::{Backend, Color, Renderer, Settings, Viewport};
|
||||
use crate::{Backend, Color, Error, Renderer, Settings, Viewport};
|
||||
|
||||
use core::ffi::c_void;
|
||||
use glow::HasContext;
|
||||
|
|
@ -18,7 +18,7 @@ impl iced_graphics::window::GLCompositor for Compositor {
|
|||
unsafe fn new(
|
||||
settings: Self::Settings,
|
||||
loader_function: impl FnMut(&str) -> *const c_void,
|
||||
) -> (Self, Self::Renderer) {
|
||||
) -> Result<(Self, Self::Renderer), Error> {
|
||||
let gl = glow::Context::from_loader_function(loader_function);
|
||||
|
||||
// Enable auto-conversion from/to sRGB
|
||||
|
|
@ -33,7 +33,7 @@ impl iced_graphics::window::GLCompositor for Compositor {
|
|||
|
||||
let renderer = Renderer::new(Backend::new(&gl, settings));
|
||||
|
||||
(Self { gl }, renderer)
|
||||
Ok((Self { gl }, renderer))
|
||||
}
|
||||
|
||||
fn sample_count(settings: &Settings) -> u32 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue