diff options
author | Chia-I Wu <olvaffe@gmail.com> | 2010-01-02 21:32:33 +0800 |
---|---|---|
committer | Chia-I Wu <olvaffe@gmail.com> | 2010-01-12 10:55:35 +0800 |
commit | 2d44b6f8848ee2c43a92c5a00ec9981b82319ed8 (patch) | |
tree | aef567708724af54a2d07a5e51ec06144f58d2fb /src/gallium | |
parent | ea014ed461b5cc87df5f5565bcb792888e408b5b (diff) |
st/mesa: Remove st_api.c.
st_api.c is supposed to define st_api_OpenGL to advertise OpenGL
support. However, the linker discards the symbol because it has no
user. It is better to leave this to other state trackers that link to
libmesagallium.a.
Signed-off-by: Chia-I Wu <olvaffe@gmail.com>
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/winsys/xlib/xlib.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/winsys/xlib/xlib.c b/src/gallium/winsys/xlib/xlib.c index 6dbe05f193..13117712c2 100644 --- a/src/gallium/winsys/xlib/xlib.c +++ b/src/gallium/winsys/xlib/xlib.c @@ -47,6 +47,8 @@ enum mode { MODE_SOFTPIPE }; +/* advertise OpenGL support */ +PUBLIC const int st_api_OpenGL = 1; static enum mode get_mode() { |