mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 20:28:04 +02:00
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:
parent
ec16bb62ac
commit
06109db47b
1 changed files with 0 additions and 8 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue