summaryrefslogtreecommitdiff
path: root/run.py
diff options
context:
space:
mode:
Diffstat (limited to 'run.py')
-rwxr-xr-xrun.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/run.py b/run.py
index 4fc366e..614256b 100755
--- a/run.py
+++ b/run.py
@@ -57,7 +57,7 @@ def run_test(filename):
raise Exception('Only shader 0 found. {}'.format(filename))
re_search = re.compile(
- r'(?P<stage>[A-Za-z0-9]+) shader\: (?P<count>\d+) instructions.')
+ r'(?P<stage>[A-Za-z0-9]+) (vec4 )?shader\: (?P<count>\d+) instructions.')
for line in lines:
match = re_search.match(line)
if match is not None: