Blame src/gallium/tools/trace/dump.py

Packit Service 5cb53b
#! /usr/libexec/platform-python
Packit 8f2243
##########################################################################
Packit 8f2243
# 
Packit 8f2243
# Copyright 2008 VMware, Inc.
Packit 8f2243
# All Rights Reserved.
Packit 8f2243
# 
Packit 8f2243
# Permission is hereby granted, free of charge, to any person obtaining a
Packit 8f2243
# copy of this software and associated documentation files (the
Packit 8f2243
# "Software"), to deal in the Software without restriction, including
Packit 8f2243
# without limitation the rights to use, copy, modify, merge, publish,
Packit 8f2243
# distribute, sub license, and/or sell copies of the Software, and to
Packit 8f2243
# permit persons to whom the Software is furnished to do so, subject to
Packit 8f2243
# the following conditions:
Packit 8f2243
# 
Packit 8f2243
# The above copyright notice and this permission notice (including the
Packit 8f2243
# next paragraph) shall be included in all copies or substantial portions
Packit 8f2243
# of the Software.
Packit 8f2243
# 
Packit 8f2243
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
Packit 8f2243
# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
Packit 8f2243
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
Packit 8f2243
# IN NO EVENT SHALL VMWARE AND/OR ITS SUPPLIERS BE LIABLE FOR
Packit 8f2243
# ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
Packit 8f2243
# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
Packit 8f2243
# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Packit 8f2243
# 
Packit 8f2243
##########################################################################
Packit 8f2243
Packit 8f2243
Packit 8f2243
from parse import *
Packit 8f2243
Packit 8f2243
Packit 8f2243
if __name__ == '__main__':
Packit 8f2243
    Main().main()