Mesa (master): glapi: Remove static dispatch for functions that didn' t exist in 10.3

Ian Romanick idr at kemper.freedesktop.org
Sat May 16 03:24:15 UTC 2015


Module: Mesa
Branch: master
Commit: 90a1a4e2345fe25517f5189cca1188162992f39b
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=90a1a4e2345fe25517f5189cca1188162992f39b

Author: Ian Romanick <ian.d.romanick at intel.com>
Date:   Tue May 12 16:01:17 2015 -0700

glapi: Remove static dispatch for functions that didn't exist in 10.3

Comparing the output of

    nm libGL.so | grep ' T gl[^X]' | sed 's/.* T //'

between 10.3.7 and this commit, the only change is the removal of
glFramebufferTextureFaceARB.  This function was removed a couple commits
previously.

glClipControl was, at the time 10.3 shipped, a very new function.  It
was added by GL_ARB_clip_control.  That extension was ratified by the
Khronos Board of Promoters on August 7, 2014.  It's less than a year
old, and I don't think it's is likely that there are many applications
using that extension... much less statically linking with the function.

Signed-off-by: Ian Romanick <ian.d.romanick at intel.com>
Reviewed-by: Emil Velikov <emil.l.velikov at gmail.com>

---

 src/mapi/glapi/gen/static_data.py |    1 -
 1 file changed, 1 deletion(-)

diff --git a/src/mapi/glapi/gen/static_data.py b/src/mapi/glapi/gen/static_data.py
index 9623db2..ab9c605 100644
--- a/src/mapi/glapi/gen/static_data.py
+++ b/src/mapi/glapi/gen/static_data.py
@@ -545,7 +545,6 @@ functions = [
    "ClientActiveTexture",
    "ClientActiveTextureARB",
    "ClientWaitSync",
-   "ClipControl",
    "ClipPlane",
    "ClipPlanef",
    "ClipPlanex",




More information about the mesa-commit mailing list