Andreas Boll | ecd5c7c | 2012-06-12 09:05:03 +0200 | [diff] [blame] | 1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
| 2 | <html lang="en"> |
| 3 | <head> |
| 4 | <meta http-equiv="content-type" content="text/html; charset=utf-8"> |
| 5 | <title>Function Name Mangling</title> |
| 6 | <link rel="stylesheet" type="text/css" href="mesa.css"> |
| 7 | </head> |
| 8 | <body> |
Brian Paul | 0b27ace | 2003-03-08 17:38:57 +0000 | [diff] [blame] | 9 | |
Andreas Boll | b5da52a | 2012-09-18 18:57:02 +0200 | [diff] [blame] | 10 | <div class="header"> |
| 11 | <h1>The Mesa 3D Graphics Library</h1> |
| 12 | </div> |
| 13 | |
| 14 | <iframe src="contents.html"></iframe> |
| 15 | <div class="content"> |
| 16 | |
Andreas Boll | ecd5c7c | 2012-06-12 09:05:03 +0200 | [diff] [blame] | 17 | <h1>Function Name Mangling</h1> |
Brian Paul | 0b27ace | 2003-03-08 17:38:57 +0000 | [diff] [blame] | 18 | |
| 19 | <p> |
Brian Paul | bb4b378 | 2006-09-29 01:22:53 +0000 | [diff] [blame] | 20 | If you want to use both Mesa and another OpenGL library in the same |
| 21 | application at the same time you may find it useful to compile Mesa with |
Brian Paul | 0b27ace | 2003-03-08 17:38:57 +0000 | [diff] [blame] | 22 | <i>name mangling</i>. |
| 23 | This results in all the Mesa functions being prefixed with |
| 24 | <b>mgl</b> instead of <b>gl</b>. |
| 25 | </p> |
| 26 | |
| 27 | <p> |
| 28 | To do this, recompile Mesa with the compiler flag -DUSE_MGL_NAMESPACE. |
Brian Paul | bb4b378 | 2006-09-29 01:22:53 +0000 | [diff] [blame] | 29 | Add the flag to CFLAGS in the configuration file which you want to use. |
Brian Paul | c478f0d | 2006-11-18 16:44:30 +0000 | [diff] [blame] | 30 | For example: |
Andreas Boll | df2be22 | 2012-06-12 09:05:22 +0200 | [diff] [blame] | 31 | </p> |
Brian Paul | c478f0d | 2006-11-18 16:44:30 +0000 | [diff] [blame] | 32 | <pre> |
| 33 | CFLAGS += -DUSE_MGL_NAMESPACE |
| 34 | </pre> |
Brian Paul | 0b27ace | 2003-03-08 17:38:57 +0000 | [diff] [blame] | 35 | |
Andreas Boll | b5da52a | 2012-09-18 18:57:02 +0200 | [diff] [blame] | 36 | </div> |
Andreas Boll | ecd5c7c | 2012-06-12 09:05:03 +0200 | [diff] [blame] | 37 | </body> |
| 38 | </html> |