mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 13:10:10 +01:00
anv: cleanup python imports
Signed-off-by: Eric Engestrom <eric.engestrom@intel.com> Reviewed-by: Dylan Baker <dylan@pnwbakers.com>
This commit is contained in:
parent
ce7348507e
commit
e0347581f3
2 changed files with 3 additions and 3 deletions
|
|
@ -23,7 +23,6 @@
|
|||
#
|
||||
|
||||
import argparse
|
||||
import functools
|
||||
import math
|
||||
import os
|
||||
import xml.etree.cElementTree as et
|
||||
|
|
@ -31,7 +30,7 @@ import xml.etree.cElementTree as et
|
|||
from collections import OrderedDict, namedtuple
|
||||
from mako.template import Template
|
||||
|
||||
from anv_extensions import *
|
||||
from anv_extensions import VkVersion, MAX_API_VERSION, EXTENSIONS
|
||||
|
||||
# We generate a static hash table for entry point lookup
|
||||
# (vkGetProcAddress). We use a linear congruential generator for our hash
|
||||
|
|
|
|||
|
|
@ -22,8 +22,9 @@
|
|||
|
||||
import json
|
||||
import os.path
|
||||
import argparse
|
||||
|
||||
from anv_extensions import *
|
||||
from anv_extensions import MAX_API_VERSION
|
||||
|
||||
if __name__ == '__main__':
|
||||
parser = argparse.ArgumentParser()
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue