diff options
author | Chia-I Wu <[email protected]> | 2009-09-03 11:03:20 +0800 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-11-05 20:04:11 -0700 |
commit | 5b426288c2dbc42ef44ea13fe37afa77223107bb (patch) | |
tree | 94bec3a9b82515a581958d539ad0d87446174984 /src/mesa/glapi/gl_enums.py | |
parent | 7df4c7e1b8faf0c0339ca7287e3560fafab02b6a (diff) |
glapi: Include headers with directory prefixes.
This allows different sets of generated sources and headers to be used.
Signed-off-by: Chia-I Wu <[email protected]>
Diffstat (limited to 'src/mesa/glapi/gl_enums.py')
-rw-r--r-- | src/mesa/glapi/gl_enums.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mesa/glapi/gl_enums.py b/src/mesa/glapi/gl_enums.py index 27ab119537e..acaa06ab37e 100644 --- a/src/mesa/glapi/gl_enums.py +++ b/src/mesa/glapi/gl_enums.py @@ -42,10 +42,10 @@ class PrintGlEnums(gl_XML.gl_print_base): def printRealHeader(self): - print '#include "glheader.h"' - print '#include "mfeatures.h"' - print '#include "enums.h"' - print '#include "imports.h"' + print '#include "main/glheader.h"' + print '#include "main/mfeatures.h"' + print '#include "main/enums.h"' + print '#include "main/imports.h"' print '' print 'typedef struct {' print ' size_t offset;' |