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>
This commit is contained in:
Emil Velikov 2015-06-18 23:30:34 +01:00
parent ec16bb62ac
commit 06109db47b

View file

@ -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)