anv: Use python style in anv_entrypoints_gen.py
authorDylan Baker <dylan@pnwbakers.com>
Fri, 17 Feb 2017 19:06:22 +0000 (11:06 -0800)
committerDylan Baker <dylan@pnwbakers.com>
Wed, 22 Mar 2017 23:22:00 +0000 (16:22 -0700)
commit08a6d3b4ba8bc50c9b3ba927d023354db6b075b1
treea3de9027f7c1838c58a5e3fba65f9de1a994358c
parentabd72f2e3568c5fca3abdc4f6caca7ceee745afb
anv: Use python style in anv_entrypoints_gen.py

These are all fairly small cleanups/tweaks that don't really deserve
their own patch.

- Prefer comprehensions to map() and filter(), since they're faster
- replace unused variables with _
- Use 4 spaces of indent
- drop semicolons from the end of lines
- Don't use parens around if conditions
- don't put spaces around brackets
- don't import modules as caps (ET -> et)
- Use docstrings instead of comments

v2: - Replace comprehensions with multiplication

Signed-off-by: Dylan Baker <dylanx.c.baker@intel.com>
src/intel/vulkan/anv_entrypoints_gen.py