vk/glsl_scraper: Fix code style for imports
authorChad Versace <chad.versace@intel.com>
Wed, 27 May 2015 23:02:50 +0000 (16:02 -0700)
committerChad Versace <chad.versace@intel.com>
Wed, 27 May 2015 23:04:12 +0000 (16:04 -0700)
Python style is one module imported per line, and imports are at the top
of the file.

src/vulkan/glsl_scraper.py

index ca5bad4a8a1eb55e96906dc12cc26887d8bf133b..d476b3c0947733a29b0e5f66921b5394d788bc2e 100644 (file)
@@ -1,5 +1,14 @@
 #! /usr/bin/env python
 
+import cStringIO
+import os
+import re
+import shutil
+import struct
+import subprocess
+import sys
+import tempfile
+
 def print_usage(err):
    print """\
 glsl_scraper.py [options] file
@@ -16,8 +25,6 @@ Options:
    --with-glslang=PATH  Full path to the glslangValidator program"""
    exit(err)
 
-import os, sys, re, cStringIO, tempfile, subprocess, struct, shutil
-
 class Shader:
    def __init__(self, stage):
       self.stream = cStringIO.StringIO()