~ubuntu-branches/ubuntu/jaunty/mesa/jaunty

« back to all changes in this revision

Viewing changes to src/mesa/glapi/glapi_getproc.c

  • Committer: Bazaar Package Importer
  • Author(s): Timo Aaltonen
  • Date: 2009-04-03 12:42:06 UTC
  • mfrom: (1.2.16 upstream) (3.1.5 experimental)
  • Revision ID: james.westby@ubuntu.com-20090403124206-0oo9dl0tcmd0qr38
Tags: 7.4-0ubuntu1
* New upstream release, merge from debian-experimental
  (LP: #330476, #347171, #349127)
* Drop 103_rs600_support.patch, included in this version.
* Drop 104_swrast_fbconfigs.patch, included in this version.
* Add 103_bump_965_texture_limit.diff. (LP: #146298)
* Add 104_fix_dri2_ext_tfp.diff. (LP: #324854)

Show diffs side-by-side

added added

removed removed

Lines of Context:
87
87
   GLuint i;
88
88
   for (i = 0; static_functions[i].Name_offset >= 0; i++) {
89
89
      const char *testName = gl_string_table + static_functions[i].Name_offset;
90
 
      if (strcmp(testName, n) == 0) {
 
90
#ifdef MANGLE
 
91
      /* skip the "m" prefix on the name */
 
92
      if (strcmp(testName, n + 1) == 0)
 
93
#else
 
94
      if (strcmp(testName, n) == 0)
 
95
#endif
 
96
      {
91
97
         return &static_functions[i];
92
98
      }
93
99
   }