From 13affe0d3f2756771edfab301f31dc69185f91f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mathias=20Fr=C3=B6hlich?= Date: Fri, 1 Jul 2016 07:13:46 +0200 Subject: osmesa: Export OSMesaCreateContextAttribs. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Since the function is exported like any other public api function and put in the header as if you could link against it, export it also from shared objects. Signed-off-by: Mathias Fröhlich Reviewed-by: Brian Paul Cc: "11.2 12.0" --- src/gallium/targets/osmesa/osmesa.def | 1 + src/gallium/targets/osmesa/osmesa.mingw.def | 1 + src/gallium/targets/osmesa/osmesa.sym | 1 + 3 files changed, 3 insertions(+) (limited to 'src/gallium/targets') diff --git a/src/gallium/targets/osmesa/osmesa.def b/src/gallium/targets/osmesa/osmesa.def index e347463..f6d09b8 100644 --- a/src/gallium/targets/osmesa/osmesa.def +++ b/src/gallium/targets/osmesa/osmesa.def @@ -3,6 +3,7 @@ VERSION 4.1 EXPORTS OSMesaCreateContext + OSMesaCreateContextAttribs OSMesaCreateContextExt OSMesaDestroyContext OSMesaMakeCurrent diff --git a/src/gallium/targets/osmesa/osmesa.mingw.def b/src/gallium/targets/osmesa/osmesa.mingw.def index 945201c..b77af60 100644 --- a/src/gallium/targets/osmesa/osmesa.mingw.def +++ b/src/gallium/targets/osmesa/osmesa.mingw.def @@ -1,5 +1,6 @@ EXPORTS OSMesaCreateContext = OSMesaCreateContext@8 + OSMesaCreateContextAttribs = OSMesaCreateContextAttribs@8 OSMesaCreateContextExt = OSMesaCreateContextExt@20 OSMesaDestroyContext = OSMesaDestroyContext@4 OSMesaMakeCurrent = OSMesaMakeCurrent@20 diff --git a/src/gallium/targets/osmesa/osmesa.sym b/src/gallium/targets/osmesa/osmesa.sym index d4b963d..59beab3 100644 --- a/src/gallium/targets/osmesa/osmesa.sym +++ b/src/gallium/targets/osmesa/osmesa.sym @@ -2,6 +2,7 @@ global: OSMesaColorClamp; OSMesaCreateContext; + OSMesaCreateContextAttribs; OSMesaCreateContextExt; OSMesaDestroyContext; OSMesaGetColorBuffer; -- cgit v1.1