summaryrefslogtreecommitdiff
path: root/run.py
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2015-03-28 13:22:48 -0700
committerMatt Turner <mattst88@gmail.com>2015-03-28 13:22:48 -0700
commitd4a8d9ab012c3df04356c69d81ce1ce59fdbf189 (patch)
treebef1cee20bbbd7bd8ec176c6f9346ad0165d8384 /run.py
parent73514c12ca2d61e1785682ab686206ac13ef0572 (diff)
run.py: Make it work with vec4 VS again.
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: