summaryrefslogtreecommitdiff
path: root/docs/devinfo.html
diff options
context:
space:
mode:
authorChia-I Wu <olv@lunarg.com>2010-02-24 11:20:14 +0800
committerChia-I Wu <olv@lunarg.com>2010-02-25 21:32:58 +0800
commit27d260b41038e0c19c8f24b8bdb2c004c1eb7aa2 (patch)
treea0f1060d6be58eee33228539baac35c7e7d565dc /docs/devinfo.html
parent4cb13b433cfdaa1295e5df048d7ef614545f6e16 (diff)
glapi: Move src/mesa/main/dispatch.c to glapi and rename.
main/dispatch.c is a glapi source file. It is part of GLAPI_SOURCES in sources.mak and part of glapi_sources in SConscript. This commit moves it to glapi/ and renames it to glapi_dispatch.c.
Diffstat (limited to 'docs/devinfo.html')
-rw-r--r--docs/devinfo.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/devinfo.html b/docs/devinfo.html
index 0fb816749e..df0e726524 100644
--- a/docs/devinfo.html
+++ b/docs/devinfo.html
@@ -107,7 +107,7 @@ Global variables are not allowed.
Function name examples:
</p>
<pre>
- glFooBar() - a public GL entry point (in dispatch.c)
+ glFooBar() - a public GL entry point (in glapi_dispatch.c)
_mesa_FooBar() - the internal immediate mode function
save_FooBar() - retained mode (display list) function in dlist.c
foo_bar() - a static (private) function