From 295a02549d74559831023455d1bb0ebf42bc1415 Mon Sep 17 00:00:00 2001 From: George Sapountzis Date: Mon, 22 Feb 2010 22:27:49 +0200 Subject: glapi: fix es after mv --- Makefile | 6 +++--- src/mesa/es/glapi/Makefile | 2 +- src/mesa/es/glapi/base1_API.xml | 2 +- src/mesa/es/glapi/base2_API.xml | 2 +- src/mesa/es/glapi/es1_API.xml | 2 +- src/mesa/es/glapi/es1_COMPAT.xml | 2 +- src/mesa/es/glapi/es1_EXT.xml | 2 +- src/mesa/es/glapi/es2_API.xml | 2 +- src/mesa/es/glapi/es2_COMPAT.xml | 2 +- src/mesa/es/glapi/es2_EXT.xml | 2 +- src/mesa/es/glapi/es_COMPAT.xml | 4 ++-- src/mesa/es/glapi/es_EXT.xml | 2 +- src/mesa/es/glapi/gl_compare.py | 2 +- src/mesa/es/glapi/gl_parse_header.py | 2 +- 14 files changed, 17 insertions(+), 17 deletions(-) diff --git a/Makefile b/Makefile index ea5751d947..3e92e1312e 100644 --- a/Makefile +++ b/Makefile @@ -314,9 +314,9 @@ MAIN_FILES = \ ES_FILES = \ $(DIRECTORY)/include/GLES/*.h \ $(DIRECTORY)/include/GLES2/*.h \ - $(DIRECTORY)/src/mesa/glapi/*.xml \ - $(DIRECTORY)/src/mesa/glapi/*.py \ - $(DIRECTORY)/src/mesa/glapi/*.dtd \ + $(DIRECTORY)/src/mesa/glapi/gen/*.xml \ + $(DIRECTORY)/src/mesa/glapi/gen/*.py \ + $(DIRECTORY)/src/mesa/glapi/gen/*.dtd \ $(DIRECTORY)/src/mesa/es/glapi/Makefile \ $(DIRECTORY)/src/mesa/es/glapi/*.xml \ $(DIRECTORY)/src/mesa/es/glapi/*.py \ diff --git a/src/mesa/es/glapi/Makefile b/src/mesa/es/glapi/Makefile index 1e32af867d..e8a9afab7c 100644 --- a/src/mesa/es/glapi/Makefile +++ b/src/mesa/es/glapi/Makefile @@ -1,5 +1,5 @@ TOP = ../../../.. -GLAPI = ../../glapi +GLAPI = ../../glapi/gen include $(TOP)/configs/current OUTPUTS := \ diff --git a/src/mesa/es/glapi/base1_API.xml b/src/mesa/es/glapi/base1_API.xml index f5d136ccef..72e4128272 100644 --- a/src/mesa/es/glapi/base1_API.xml +++ b/src/mesa/es/glapi/base1_API.xml @@ -1,5 +1,5 @@ - + diff --git a/src/mesa/es/glapi/es1_API.xml b/src/mesa/es/glapi/es1_API.xml index 7ee5515f19..1ac1467458 100644 --- a/src/mesa/es/glapi/es1_API.xml +++ b/src/mesa/es/glapi/es1_API.xml @@ -1,5 +1,5 @@ - + diff --git a/src/mesa/es/glapi/es1_COMPAT.xml b/src/mesa/es/glapi/es1_COMPAT.xml index 4fc9223cc0..1f45a8c0b6 100644 --- a/src/mesa/es/glapi/es1_COMPAT.xml +++ b/src/mesa/es/glapi/es1_COMPAT.xml @@ -1,5 +1,5 @@ - + diff --git a/src/mesa/es/glapi/es1_EXT.xml b/src/mesa/es/glapi/es1_EXT.xml index de4868cfd4..d4abd81046 100644 --- a/src/mesa/es/glapi/es1_EXT.xml +++ b/src/mesa/es/glapi/es1_EXT.xml @@ -1,5 +1,5 @@ - + diff --git a/src/mesa/es/glapi/es2_API.xml b/src/mesa/es/glapi/es2_API.xml index 266c07613c..b476dbe00f 100644 --- a/src/mesa/es/glapi/es2_API.xml +++ b/src/mesa/es/glapi/es2_API.xml @@ -1,5 +1,5 @@ - + diff --git a/src/mesa/es/glapi/es2_COMPAT.xml b/src/mesa/es/glapi/es2_COMPAT.xml index 61f11a604e..5ecd4a1ba6 100644 --- a/src/mesa/es/glapi/es2_COMPAT.xml +++ b/src/mesa/es/glapi/es2_COMPAT.xml @@ -1,5 +1,5 @@ - + diff --git a/src/mesa/es/glapi/es2_EXT.xml b/src/mesa/es/glapi/es2_EXT.xml index 3615772b56..dcf9858569 100644 --- a/src/mesa/es/glapi/es2_EXT.xml +++ b/src/mesa/es/glapi/es2_EXT.xml @@ -1,5 +1,5 @@ - + diff --git a/src/mesa/es/glapi/es_COMPAT.xml b/src/mesa/es/glapi/es_COMPAT.xml index bb6d28db83..1bd66dad30 100644 --- a/src/mesa/es/glapi/es_COMPAT.xml +++ b/src/mesa/es/glapi/es_COMPAT.xml @@ -1,5 +1,5 @@ - + @@ -2641,6 +2641,6 @@ - + diff --git a/src/mesa/es/glapi/es_EXT.xml b/src/mesa/es/glapi/es_EXT.xml index b76cda929a..629ba90528 100644 --- a/src/mesa/es/glapi/es_EXT.xml +++ b/src/mesa/es/glapi/es_EXT.xml @@ -1,5 +1,5 @@ - + diff --git a/src/mesa/es/glapi/gl_compare.py b/src/mesa/es/glapi/gl_compare.py index 7a2148cb1f..6b5e43bb98 100644 --- a/src/mesa/es/glapi/gl_compare.py +++ b/src/mesa/es/glapi/gl_compare.py @@ -25,7 +25,7 @@ import sys import os.path import getopt -GLAPI = "../../glapi" +GLAPI = "../../glapi/gen" sys.path.append(GLAPI) import gl_XML diff --git a/src/mesa/es/glapi/gl_parse_header.py b/src/mesa/es/glapi/gl_parse_header.py index 8b8d16b395..5382eba35c 100644 --- a/src/mesa/es/glapi/gl_parse_header.py +++ b/src/mesa/es/glapi/gl_parse_header.py @@ -26,7 +26,7 @@ import os.path import getopt import re -GLAPI = "../../glapi" +GLAPI = "../../glapi/gen" sys.path.append(GLAPI) class HeaderParser(object): -- cgit v1.2.3