diff options
author | Brian Paul <[email protected]> | 2008-11-10 16:38:47 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2008-11-10 16:38:47 -0700 |
commit | 8df4f6667f2892368791ae25505a996bc0edfacb (patch) | |
tree | b19614458719c97a75af1197a80722227b5978cf /src/mesa | |
parent | 59cc9739400c3a1654c069586070ff218993cd37 (diff) |
mesa: restore glapi/ prefix on #include
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/drivers/dri/common/extension_helper.h | 2 | ||||
-rw-r--r-- | src/mesa/glapi/extension_helper.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/common/extension_helper.h b/src/mesa/drivers/dri/common/extension_helper.h index 65e96657b8a..b977ebf0153 100644 --- a/src/mesa/drivers/dri/common/extension_helper.h +++ b/src/mesa/drivers/dri/common/extension_helper.h @@ -26,7 +26,7 @@ */ #include "utils.h" -#include "dispatch.h" +#include "glapi/dispatch.h" #ifndef NULL # define NULL 0 diff --git a/src/mesa/glapi/extension_helper.py b/src/mesa/glapi/extension_helper.py index f7fa90c3900..375e3ea59e7 100644 --- a/src/mesa/glapi/extension_helper.py +++ b/src/mesa/glapi/extension_helper.py @@ -151,7 +151,7 @@ class PrintGlExtensionGlue(gl_XML.gl_print_base): def printRealHeader(self): print '#include "utils.h"' - print '#include "dispatch.h"' + print '#include "glapi/dispatch.h"' print '' return |