summaryrefslogtreecommitdiffstats
path: root/src/gallium/targets/osmesa
diff options
context:
space:
mode:
authorMathias Fröhlich <[email protected]>2016-07-01 07:13:46 +0200
committerMathias Fröhlich <[email protected]>2016-07-07 06:19:13 +0200
commit13affe0d3f2756771edfab301f31dc69185f91f7 (patch)
tree6c5d9705f882fe7a225700a65dfa013099a19832 /src/gallium/targets/osmesa
parent7ed5bca21dcce6c225b904e5f610810b9866796f (diff)
osmesa: Export OSMesaCreateContextAttribs.
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 <[email protected]> Reviewed-by: Brian Paul <[email protected]> Cc: "11.2 12.0" <[email protected]>
Diffstat (limited to 'src/gallium/targets/osmesa')
-rw-r--r--src/gallium/targets/osmesa/osmesa.def1
-rw-r--r--src/gallium/targets/osmesa/osmesa.mingw.def1
-rw-r--r--src/gallium/targets/osmesa/osmesa.sym1
3 files changed, 3 insertions, 0 deletions
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;