[Mesa-dev] [PATCH] osmesa: Export OSMesaCreateContextAttribs.

Mathias.Froehlich at gmx.net Mathias.Froehlich at gmx.net
Wed Jul 6 03:08:55 UTC 2016


From: Mathias Fröhlich <mathias.froehlich at web.de>

Hi,

Since the function is exported like any other
public api fucnntion and put in the header
as if you could link against it export it also
from shared objects.

Please review!
Thanks!

Mathias

---
 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 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 at 8
+	OSMesaCreateContextAttribs = OSMesaCreateContextAttribs at 8
 	OSMesaCreateContextExt = OSMesaCreateContextExt at 20
 	OSMesaDestroyContext = OSMesaDestroyContext at 4
 	OSMesaMakeCurrent = OSMesaMakeCurrent at 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;
diff --git a/src/mesa/drivers/osmesa/osmesa.def b/src/mesa/drivers/osmesa/osmesa.def
index 06afab7..f7dcd59 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.5.5



More information about the mesa-dev mailing list