diff options
author | Mathias Fröhlich <mathias.froehlich@web.de> | 2016-07-01 07:13:46 +0200 |
---|---|---|
committer | Mathias Fröhlich <Mathias.Froehlich@gmx.net> | 2016-07-07 06:19:13 +0200 |
commit | 13affe0d3f2756771edfab301f31dc69185f91f7 (patch) | |
tree | 6c5d9705f882fe7a225700a65dfa013099a19832 /src/gallium/targets | |
parent | 7ed5bca21dcce6c225b904e5f610810b9866796f (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 <Mathias.Froehlich@web.de>
Reviewed-by: Brian Paul <brianp@vmware.com>
Cc: "11.2 12.0" <mesa-stable@lists.freedesktop.org>
Diffstat (limited to 'src/gallium/targets')
-rw-r--r-- | src/gallium/targets/osmesa/osmesa.def | 1 | ||||
-rw-r--r-- | src/gallium/targets/osmesa/osmesa.mingw.def | 1 | ||||
-rw-r--r-- | src/gallium/targets/osmesa/osmesa.sym | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/src/gallium/targets/osmesa/osmesa.def b/src/gallium/targets/osmesa/osmesa.def index e347463de9..f6d09b81ef 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 945201c9d8..b77af60a93 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 d4b963dc1d..59beab39f5 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; |