From d0c4801aec9dcde4d4db7a961c1c895ec9f57205 Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Mon, 2 Jun 2014 17:41:24 -0700 Subject: [PATCH] Make GLXContext public. Used in pub sigs --- platform/linux.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/linux.rs b/platform/linux.rs index ded889c..13f2c8f 100644 --- a/platform/linux.rs +++ b/platform/linux.rs @@ -125,7 +125,7 @@ type Bool = c_int; type Colormap = XID; type Drawable = c_uint; // compatible with Window type GC = *c_void; -type GLXContext = *GLXContextOpaque; +pub type GLXContext = *GLXContextOpaque; type GLXDrawable = c_uint; // compatible with GLXPixmap type GLXPixmap = c_uint; // compatible with GLXDrawable type Pixmap = c_uint;