mesa: Remove unnecessary glapitable.h includes.
authorChia-I Wu <olv@lunarg.com>
Mon, 25 Oct 2010 20:25:45 +0000 (04:25 +0800)
committerChia-I Wu <olv@lunarg.com>
Wed, 27 Oct 2010 03:11:11 +0000 (11:11 +0800)
With 07b85457d95bcc70588584e9380c51cd63aa3a2b, glapitable.h is included
by core mesa only to know the size of _glapi_table.  It is not necessary
as the same info is given by _gloffset_COUNT.

This change makes _glapi_table opaque to core mesa.  All operations on
it are supposed to go through one of the SET/GET/CALL macros.

src/mesa/main/api_exec.c
src/mesa/main/api_loopback.c
src/mesa/main/context.c
src/mesa/main/dispatch.h
src/mesa/main/dlist.c
src/mesa/main/es_generator.py

index cd002f6bc2775024309265862a5302e40cbdcff8..fc38e19a5392ba24f4ee56ee67590dac471a8bf4 100644 (file)
@@ -160,7 +160,7 @@ _mesa_create_exec_table(void)
 {
    struct _glapi_table *exec;
 
-   exec = _mesa_alloc_dispatch_table(sizeof *exec);
+   exec = _mesa_alloc_dispatch_table(_gloffset_COUNT);
    if (exec == NULL)
       return NULL;
 
index d1789069cc1e014f1dd9fac27dd2f01e1c226f09..e8da8bfec8c60ce5259a5726f5a78ccab47162c7 100644 (file)
@@ -34,7 +34,6 @@
 #include "api_loopback.h"
 #include "mtypes.h"
 #include "glapi/glapi.h"
-#include "glapi/glapitable.h"
 #include "glapi/glthread.h"
 #include "main/dispatch.h"
 
index 3e265fb3087eb87894b25064515f28405f84a2c7..957dcfc3cf94bdd258369472c0087eab6d0b30b2 100644 (file)
@@ -807,8 +807,7 @@ _mesa_alloc_dispatch_table(int size)
     * Mesa we do this to accomodate different versions of libGL and various
     * DRI drivers.
     */
-   GLint numEntries = MAX2(_glapi_get_dispatch_table_size(),
-                           size / sizeof(_glapi_proc));
+   GLint numEntries = MAX2(_glapi_get_dispatch_table_size(), size);
    struct _glapi_table *table =
       (struct _glapi_table *) malloc(numEntries * sizeof(_glapi_proc));
    if (table) {
index bf97b1a8744a3ce8b3f4392ec38fc117d9689593..552384c500c1b2e26328590ec2f8bbc6f058e9cb 100644 (file)
@@ -30,7 +30,6 @@
 #define _GLAPI_USE_REMAP_TABLE
 #endif
 
-#include "glapi/glapitable.h"
 #include "main/glapidispatch.h"
 
 #endif /* _DISPATCH_H */
index 46b7721c3240c2f6d022aaf17322644243411359..bf2e8a92d804b087d3747173212aa3bd305f315e 100644 (file)
@@ -9076,7 +9076,7 @@ _mesa_create_save_table(void)
 {
    struct _glapi_table *table;
 
-   table = _mesa_alloc_dispatch_table(sizeof *table);
+   table = _mesa_alloc_dispatch_table(_gloffset_COUNT);
    if (table == NULL)
       return NULL;
 
index 4e5d6e5577d01cabbd2eb61c33647b44dd83bfea..8f28da16df81d1617b2647241140d9e8c0deea1a 100644 (file)
@@ -219,7 +219,6 @@ extern void _mesa_error(void *ctx, GLenum error, const char *fmtString, ... );
 #ifndef GLAPIENTRY
 #define GLAPIENTRY GL_APIENTRY
 #endif
-#include "%sapi/glapi/glapitable.h"
 #include "%sapi/main/glapidispatch.h"
 
 #if FEATURE_remap_table
@@ -248,7 +247,7 @@ _mesa_map_static_functions_%s(void)
 #endif
 
 typedef void (*_glapi_proc)(void); /* generic function pointer */
-""" % (shortname, shortname, shortname, shortname, shortname);
+""" % (shortname, shortname, shortname, shortname);
 
 # Finally we get to the all-important functions
 print """/*************************************************************
@@ -716,7 +715,7 @@ struct _glapi_table *
 _mesa_create_exec_table_%s(void)
 {
    struct _glapi_table *exec;
-   exec = _mesa_alloc_dispatch_table(sizeof *exec);
+   exec = _mesa_alloc_dispatch_table(_gloffset_COUNT);
    if (exec == NULL)
       return NULL;