diff --git a/src/platform/not_implemented/native_gl_context.rs b/src/platform/not_implemented/native_gl_context.rs index e82dc7f..f7b35cd 100644 --- a/src/platform/not_implemented/native_gl_context.rs +++ b/src/platform/not_implemented/native_gl_context.rs @@ -1,4 +1,6 @@ +use gleam::gl; use NativeGLContextMethods; +use GLVersion; pub struct NativeGLContext; pub struct NativeGLContextHandle; @@ -10,7 +12,9 @@ impl NativeGLContextMethods for NativeGLContext { 0 as *const () } - fn create_shared(_with: Option<&Self::Handle>) -> Result { + fn create_shared(_with: Option<&Self::Handle>, + _api_type: &gl::GlType, + _api_version: GLVersion) -> Result { Err("Not implemented (yet)") }