summaryrefslogtreecommitdiff
path: root/src/mapi
diff options
context:
space:
mode:
authorEmil Velikov <emil.l.velikov@gmail.com>2015-06-18 23:30:34 +0100
committerEmil Velikov <emil.l.velikov@gmail.com>2015-06-23 16:57:27 +0100
commit06109db47b69867da0c7537f97b1aa8650598a08 (patch)
tree040b7bcda5ec6081736601815b0ec424bd3f91a1 /src/mapi
parentec16bb62acfdfe6023d1ba6456ae8a19f14c5d80 (diff)
glapi: remap_helper.py: remove unused argument 'es'
Identical to the previous commit - unused by neither the Autotools, Android or SCons build. Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com> Reviewed-by: Dylan Baker <baker.dylan.c@gmail.com> Reviewed-by: Jose Fonseca <jfonseca@vmware.com>
Diffstat (limited to 'src/mapi')
-rw-r--r--src/mapi/glapi/gen/remap_helper.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/mapi/glapi/gen/remap_helper.py b/src/mapi/glapi/gen/remap_helper.py
index 94ae1936d21..edc6c3e14b6 100644
--- a/src/mapi/glapi/gen/remap_helper.py
+++ b/src/mapi/glapi/gen/remap_helper.py
@@ -174,12 +174,6 @@ def _parser():
metavar="input_file_name",
dest='file_name',
help="An xml description file.")
- parser.add_argument('-c', '--es-version',
- choices=[None, 'es1', 'es2'],
- default=None,
- metavar='ver',
- dest='es',
- help='A GLES version to support')
return parser.parse_args()
@@ -188,8 +182,6 @@ def main():
args = _parser()
api = gl_XML.parse_GL_API(args.file_name)
- if args.es is not None:
- api.filter_functions_by_api(args.es)
printer = PrintGlRemap()
printer.Print(api)