1 /*
2 * Copyright © 2013 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
22 */
23 #include <gtest/gtest.h>
24 #include "main/compiler.h"
25 #include "main/mtypes.h"
26 #include "main/macros.h"
27 #include "ir.h"
28
TEST(ir_variable_constructor,interface)29 TEST(ir_variable_constructor, interface)
30 {
31 void *mem_ctx = ralloc_context(NULL);
32
33 static const glsl_struct_field f[] = {
34 glsl_struct_field(glsl_type::vec(4), "v")
35 };
36
37 const glsl_type *const interface =
38 glsl_type::get_interface_instance(f,
39 ARRAY_SIZE(f),
40 GLSL_INTERFACE_PACKING_STD140,
41 false,
42 "simple_interface");
43
44 static const char name[] = "named_instance";
45
46 ir_variable *const v =
47 new(mem_ctx) ir_variable(interface, name, ir_var_uniform);
48
49 EXPECT_STREQ(name, v->name);
50 EXPECT_NE(name, v->name);
51 EXPECT_EQ(interface, v->type);
52 EXPECT_EQ(interface, v->get_interface_type());
53 }
54
TEST(ir_variable_constructor,interface_array)55 TEST(ir_variable_constructor, interface_array)
56 {
57 void *mem_ctx = ralloc_context(NULL);
58
59 static const glsl_struct_field f[] = {
60 glsl_struct_field(glsl_type::vec(4), "v")
61 };
62
63 const glsl_type *const interface =
64 glsl_type::get_interface_instance(f,
65 ARRAY_SIZE(f),
66 GLSL_INTERFACE_PACKING_STD140,
67 false,
68 "simple_interface");
69
70 const glsl_type *const interface_array =
71 glsl_type::get_array_instance(interface, 2);
72
73 static const char name[] = "array_instance";
74
75 ir_variable *const v =
76 new(mem_ctx) ir_variable(interface_array, name, ir_var_uniform);
77
78 EXPECT_STREQ(name, v->name);
79 EXPECT_NE(name, v->name);
80 EXPECT_EQ(interface_array, v->type);
81 EXPECT_EQ(interface, v->get_interface_type());
82 }
83