diff options
author | Matt Turner <mattst88@gmail.com> | 2015-03-28 13:22:48 -0700 |
---|---|---|
committer | Matt Turner <mattst88@gmail.com> | 2015-03-28 13:22:48 -0700 |
commit | d4a8d9ab012c3df04356c69d81ce1ce59fdbf189 (patch) | |
tree | bef1cee20bbbd7bd8ec176c6f9346ad0165d8384 /run.py | |
parent | 73514c12ca2d61e1785682ab686206ac13ef0572 (diff) |
run.py: Make it work with vec4 VS again.
Diffstat (limited to 'run.py')
-rwxr-xr-x | run.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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: |