2 # Copyright (c) 2014 Intel Corporation
4 # Permission is hereby granted, free of charge, to any person obtaining a copy
5 # of this software and associated documentation files (the "Software"), to deal
6 # in the Software without restriction, including without limitation the rights
7 # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8 # copies of the Software, and to permit persons to whom the Software is
9 # furnished to do so, subject to the following conditions:
11 # The above copyright notice and this permission notice shall be included in
12 # all copies or substantial portions of the Software.
14 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17 # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19 # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25 from mako
import exceptions
27 from templates
import template_file
28 from modules
import utils
30 TEMPLATE
= template_file(os
.path
.basename(os
.path
.splitext(__file__
)[0]),
35 """ Generate tests """
36 dirname
= os
.path
.join('spec', 'glsl-1.20', 'compiler',
38 utils
.safe_makedirs(dirname
)
40 for type_
in ['int', 'float', 'bool', 'bvec2', 'bvec3', 'bvec4', 'mat2',
41 'mat2x2', 'mat2x3', 'mat2x4', 'mat3', 'mat3x2', 'mat3x3',
42 'mat3x4', 'mat4', 'mat4x2', 'mat4x3', 'mat4x4']:
43 name
= os
.path
.join(dirname
, 'outerProduct-{0}.vert'.format(type_
))
45 with
open(name
, 'w+') as f
:
47 f
.write(TEMPLATE
.render_unicode(type=type_
))
49 print(exceptions
.text_error_template().render(), file=sys
.stderr
)
53 if __name__
== '__main__':