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

« back to all changes in this revision

Viewing changes to src/mesa/drivers/x11/glxapi.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:
1374
1374
{
1375
1375
   GLuint i;
1376
1376
   for (i = 0; GLX_functions[i].Name; i++) {
 
1377
#ifdef MANGLE
 
1378
      /* skip the "m" prefix on the name */
 
1379
      if (strcmp(GLX_functions[i].Name, funcName+1) == 0)
 
1380
#else
1377
1381
      if (strcmp(GLX_functions[i].Name, funcName) == 0)
 
1382
#endif
1378
1383
         return GLX_functions[i].Address;
1379
1384
   }
1380
1385
   return NULL;