From 3c6877f094af4b44a72e06b7d9318e5f7b791179 Mon Sep 17 00:00:00 2001 From: Chandler Newman Date: Wed, 15 Apr 2020 12:24:31 +0100 Subject: [PATCH] Fix formatting --- src/backend/graphics/gl.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/graphics/gl.rs b/src/backend/graphics/gl.rs index b95512e..272a23b 100644 --- a/src/backend/graphics/gl.rs +++ b/src/backend/graphics/gl.rs @@ -47,5 +47,5 @@ pub trait GLGraphicsBackend { /// and may only be used in combination with the backend. Using this with any /// other gl context or after the backend was dropped *may* cause undefined behavior. pub fn load_raw_gl(backend: &B) -> Gles2 { - Gles2::load_with(|s| { backend.get_proc_address(s) as *const _ }) + Gles2::load_with(|s| backend.get_proc_address(s) as *const _) }