ext_transform_feedback: document missing mode in usage
[piglit.git] / framework / replay / __init__.py
blobe38616153b723c0ed25bf63cf126f9be754d1304
1 # coding=utf-8
2 # mypy: ignore-errors
4 # Copyright (c) 2014,2016 Intel Corporation
5 # Copyright © 2020 Valve Corporation.
6 # Copyright © 2021 Collabora Ltd.
8 # Permission is hereby granted, free of charge, to any person obtaining a
9 # copy of this software and associated documentation files (the "Software"),
10 # to deal in the Software without restriction, including without limitation
11 # the rights to use, copy, modify, merge, publish, distribute, sublicense,
12 # and/or sell copies of the Software, and to permit persons to whom the
13 # Software is furnished to do so, subject to the following conditions:
15 # The above copyright notice and this permission notice shall be included
16 # in all copies or substantial portions of the Software.
18 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 # OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
21 # THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
22 # OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
23 # ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
24 # OTHER DEALINGS IN THE SOFTWARE.
26 # SPDX-License-Identifier: MIT
28 """ Module that provides test classes and helpers """
30 # By importing every exported function from each module in the package we
31 # create a general use API, but allow it to be controlled by setting the
32 # __all__ in each module
33 # flake8: noqa F401,F403
35 from .compare_replay import *
36 from .download_utils import *
37 from .frame_times import *
38 from .image_checksum import *
39 from .options import *
40 from .query_traces_yaml import *