From 13affe0d3f2756771edfab301f31dc69185f91f7 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Mathias=20Fr=C3=B6hlich?= Date: Fri, 1 Jul 2016 07:13:46 +0200 Subject: [PATCH] osmesa: Export OSMesaCreateContextAttribs. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 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 + src/mesa/drivers/osmesa/osmesa.def | 1 + 4 files changed, 4 insertions(+) diff --git a/src/gallium/targets/osmesa/osmesa.def b/src/gallium/targets/osmesa/osmesa.def index e347463de9f..f6d09b81ef8 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 945201c9d83..b77af60a93f 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 d4b963dc1d2..59beab39f5f 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; diff --git a/src/mesa/drivers/osmesa/osmesa.def b/src/mesa/drivers/osmesa/osmesa.def index 06afab72b0a..f7dcd598505 100644 --- a/src/mesa/drivers/osmesa/osmesa.def +++ b/src/mesa/drivers/osmesa/osmesa.def @@ -4,6 +4,7 @@ VERSION 4.1 EXPORTS OSMesaColorClamp OSMesaCreateContext + OSMesaCreateContextAttribs OSMesaCreateContextExt OSMesaDestroyContext OSMesaMakeCurrent -- 2.30.2