summaryrefslogtreecommitdiff
path: root/retrace
diff options
context:
space:
mode:
Diffstat (limited to 'retrace')
-rw-r--r--retrace/CMakeLists.txt1
-rw-r--r--retrace/glretrace.py2
2 files changed, 0 insertions, 3 deletions
diff --git a/retrace/CMakeLists.txt b/retrace/CMakeLists.txt
index adb6ac0f..ce799823 100644
--- a/retrace/CMakeLists.txt
+++ b/retrace/CMakeLists.txt
@@ -18,7 +18,6 @@ add_custom_command (
glretrace.py
retrace.py
${CMAKE_SOURCE_DIR}/specs/glapi.py
- ${CMAKE_SOURCE_DIR}/specs/glesapi.py
${CMAKE_SOURCE_DIR}/specs/gltypes.py
${CMAKE_SOURCE_DIR}/specs/stdapi.py
)
diff --git a/retrace/glretrace.py b/retrace/glretrace.py
index 48414496..3acacbdf 100644
--- a/retrace/glretrace.py
+++ b/retrace/glretrace.py
@@ -33,7 +33,6 @@ import sys
from retrace import Retracer
import specs.stdapi as stdapi
import specs.glapi as glapi
-import specs.glesapi as glesapi
class GlRetracer(Retracer):
@@ -492,7 +491,6 @@ _getActiveProgram(void);
'''
api = stdapi.API()
api.addModule(glapi.glapi)
- api.addModule(glesapi.glesapi)
retracer = GlRetracer()
retracer.retraceApi(api)