| // Copyright 2021 The Tint Authors. |
| // |
| // Licensed under the Apache License, Version 2.0 (the "License"); |
| // you may not use this file except in compliance with the License. |
| // You may obtain a copy of the License at |
| // |
| // http://www.apache.org/licenses/LICENSE-2.0 |
| // |
| // Unless required by applicable law or agreed to in writing, software |
| // distributed under the License is distributed on an "AS IS" BASIS, |
| // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| // See the License for the specific language governing permissions and |
| // limitations under the License. |
| |
| #include "src/tint/lang/glsl/writer/ast_printer/helper_test.h" |
| #include "src/tint/lang/wgsl/ast/id_attribute.h" |
| |
| #include "gmock/gmock.h" |
| |
| namespace tint::glsl::writer { |
| namespace { |
| |
| using namespace tint::core::fluent_types; // NOLINT |
| using namespace tint::core::number_suffixes; // NOLINT |
| |
| using GlslASTPrinterTest_ModuleConstant = TestHelper; |
| |
| TEST_F(GlslASTPrinterTest_ModuleConstant, Emit_GlobalLet) { |
| auto* var = Let("pos", ty.array<f32, 3>(), Call<array<f32, 3>>(1_f, 2_f, 3_f)); |
| WrapInFunction(Decl(var)); |
| |
| ASTPrinter& gen = Build(); |
| gen.EmitProgramConstVariable(var); |
| EXPECT_THAT(gen.Diagnostics(), testing::IsEmpty()); |
| EXPECT_EQ(gen.Result(), "const float pos[3] = float[3](1.0f, 2.0f, 3.0f);\n"); |
| } |
| |
| TEST_F(GlslASTPrinterTest_ModuleConstant, Emit_GlobalConst_AInt) { |
| auto* var = GlobalConst("G", Expr(1_a)); |
| Func("f", tint::Empty, ty.void_(), |
| Vector{ |
| Decl(Let("l", Expr(var))), |
| }); |
| |
| ASTPrinter& gen = Build(); |
| gen.Generate(); |
| EXPECT_THAT(gen.Diagnostics(), testing::IsEmpty()); |
| EXPECT_EQ(gen.Result(), R"(#version 310 es |
| |
| void f() { |
| int l = 1; |
| } |
| |
| )"); |
| } |
| |
| TEST_F(GlslASTPrinterTest_ModuleConstant, Emit_GlobalConst_AFloat) { |
| auto* var = GlobalConst("G", Expr(1._a)); |
| Func("f", tint::Empty, ty.void_(), |
| Vector{ |
| Decl(Let("l", Expr(var))), |
| }); |
| |
| ASTPrinter& gen = Build(); |
| gen.Generate(); |
| EXPECT_THAT(gen.Diagnostics(), testing::IsEmpty()); |
| EXPECT_EQ(gen.Result(), R"(#version 310 es |
| |
| void f() { |
| float l = 1.0f; |
| } |
| |
| )"); |
| } |
| |
| TEST_F(GlslASTPrinterTest_ModuleConstant, Emit_GlobalConst_i32) { |
| auto* var = GlobalConst("G", Expr(1_i)); |
| Func("f", tint::Empty, ty.void_(), |
| Vector{ |
| Decl(Let("l", Expr(var))), |
| }); |
| |
| ASTPrinter& gen = Build(); |
| gen.Generate(); |
| EXPECT_THAT(gen.Diagnostics(), testing::IsEmpty()); |
| EXPECT_EQ(gen.Result(), R"(#version 310 es |
| |
| void f() { |
| int l = 1; |
| } |
| |
| )"); |
| } |
| |
| TEST_F(GlslASTPrinterTest_ModuleConstant, Emit_GlobalConst_u32) { |
| auto* var = GlobalConst("G", Expr(1_u)); |
| Func("f", tint::Empty, ty.void_(), |
| Vector{ |
| Decl(Let("l", Expr(var))), |
| }); |
| |
| ASTPrinter& gen = Build(); |
| gen.Generate(); |
| EXPECT_THAT(gen.Diagnostics(), testing::IsEmpty()); |
| EXPECT_EQ(gen.Result(), R"(#version 310 es |
| |
| void f() { |
| uint l = 1u; |
| } |
| |
| )"); |
| } |
| |
| TEST_F(GlslASTPrinterTest_ModuleConstant, Emit_GlobalConst_f32) { |
| auto* var = GlobalConst("G", Expr(1_f)); |
| Func("f", tint::Empty, ty.void_(), |
| Vector{ |
| Decl(Let("l", Expr(var))), |
| }); |
| |
| ASTPrinter& gen = Build(); |
| gen.Generate(); |
| EXPECT_THAT(gen.Diagnostics(), testing::IsEmpty()); |
| EXPECT_EQ(gen.Result(), R"(#version 310 es |
| |
| void f() { |
| float l = 1.0f; |
| } |
| |
| )"); |
| } |
| |
| TEST_F(GlslASTPrinterTest_ModuleConstant, Emit_GlobalConst_f16) { |
| Enable(core::Extension::kF16); |
| |
| auto* var = GlobalConst("G", Expr(1_h)); |
| Func("f", tint::Empty, ty.void_(), |
| Vector{ |
| Decl(Let("l", Expr(var))), |
| }); |
| |
| ASTPrinter& gen = Build(); |
| gen.Generate(); |
| EXPECT_THAT(gen.Diagnostics(), testing::IsEmpty()); |
| EXPECT_EQ(gen.Result(), R"(#version 310 es |
| #extension GL_AMD_gpu_shader_half_float : require |
| |
| void f() { |
| float16_t l = 1.0hf; |
| } |
| |
| )"); |
| } |
| |
| TEST_F(GlslASTPrinterTest_ModuleConstant, Emit_GlobalConst_vec3_AInt) { |
| auto* var = GlobalConst("G", Call<vec3<Infer>>(1_a, 2_a, 3_a)); |
| Func("f", tint::Empty, ty.void_(), |
| Vector{ |
| Decl(Let("l", Expr(var))), |
| }); |
| |
| ASTPrinter& gen = Build(); |
| gen.Generate(); |
| EXPECT_THAT(gen.Diagnostics(), testing::IsEmpty()); |
| EXPECT_EQ(gen.Result(), R"(#version 310 es |
| |
| void f() { |
| ivec3 l = ivec3(1, 2, 3); |
| } |
| |
| )"); |
| } |
| |
| TEST_F(GlslASTPrinterTest_ModuleConstant, Emit_GlobalConst_vec3_AFloat) { |
| auto* var = GlobalConst("G", Call<vec3<Infer>>(1._a, 2._a, 3._a)); |
| Func("f", tint::Empty, ty.void_(), |
| Vector{ |
| Decl(Let("l", Expr(var))), |
| }); |
| |
| ASTPrinter& gen = Build(); |
| gen.Generate(); |
| EXPECT_THAT(gen.Diagnostics(), testing::IsEmpty()); |
| EXPECT_EQ(gen.Result(), R"(#version 310 es |
| |
| void f() { |
| vec3 l = vec3(1.0f, 2.0f, 3.0f); |
| } |
| |
| )"); |
| } |
| |
| TEST_F(GlslASTPrinterTest_ModuleConstant, Emit_GlobalConst_vec3_f32) { |
| auto* var = GlobalConst("G", Call<vec3<f32>>(1_f, 2_f, 3_f)); |
| Func("f", tint::Empty, ty.void_(), |
| Vector{ |
| Decl(Let("l", Expr(var))), |
| }); |
| |
| ASTPrinter& gen = Build(); |
| gen.Generate(); |
| EXPECT_THAT(gen.Diagnostics(), testing::IsEmpty()); |
| EXPECT_EQ(gen.Result(), R"(#version 310 es |
| |
| void f() { |
| vec3 l = vec3(1.0f, 2.0f, 3.0f); |
| } |
| |
| )"); |
| } |
| |
| TEST_F(GlslASTPrinterTest_ModuleConstant, Emit_GlobalConst_vec3_f16) { |
| Enable(core::Extension::kF16); |
| |
| auto* var = GlobalConst("G", Call<vec3<f16>>(1_h, 2_h, 3_h)); |
| Func("f", tint::Empty, ty.void_(), |
| Vector{ |
| Decl(Let("l", Expr(var))), |
| }); |
| |
| ASTPrinter& gen = Build(); |
| gen.Generate(); |
| EXPECT_THAT(gen.Diagnostics(), testing::IsEmpty()); |
| EXPECT_EQ(gen.Result(), R"(#version 310 es |
| #extension GL_AMD_gpu_shader_half_float : require |
| |
| void f() { |
| f16vec3 l = f16vec3(1.0hf, 2.0hf, 3.0hf); |
| } |
| |
| )"); |
| } |
| |
| TEST_F(GlslASTPrinterTest_ModuleConstant, Emit_GlobalConst_mat2x3_AFloat) { |
| auto* var = GlobalConst("G", Call<mat2x3<Infer>>(1._a, 2._a, 3._a, 4._a, 5._a, 6._a)); |
| Func("f", tint::Empty, ty.void_(), |
| Vector{ |
| Decl(Let("l", Expr(var))), |
| }); |
| |
| ASTPrinter& gen = Build(); |
| gen.Generate(); |
| EXPECT_THAT(gen.Diagnostics(), testing::IsEmpty()); |
| EXPECT_EQ(gen.Result(), R"(#version 310 es |
| |
| void f() { |
| mat2x3 l = mat2x3(vec3(1.0f, 2.0f, 3.0f), vec3(4.0f, 5.0f, 6.0f)); |
| } |
| |
| )"); |
| } |
| |
| TEST_F(GlslASTPrinterTest_ModuleConstant, Emit_GlobalConst_mat2x3_f32) { |
| auto* var = GlobalConst("G", Call<mat2x3<f32>>(1_f, 2_f, 3_f, 4_f, 5_f, 6_f)); |
| Func("f", tint::Empty, ty.void_(), |
| Vector{ |
| Decl(Let("l", Expr(var))), |
| }); |
| |
| ASTPrinter& gen = Build(); |
| gen.Generate(); |
| EXPECT_THAT(gen.Diagnostics(), testing::IsEmpty()); |
| EXPECT_EQ(gen.Result(), R"(#version 310 es |
| |
| void f() { |
| mat2x3 l = mat2x3(vec3(1.0f, 2.0f, 3.0f), vec3(4.0f, 5.0f, 6.0f)); |
| } |
| |
| )"); |
| } |
| |
| TEST_F(GlslASTPrinterTest_ModuleConstant, Emit_GlobalConst_mat2x3_f16) { |
| Enable(core::Extension::kF16); |
| |
| auto* var = GlobalConst("G", Call<mat2x3<f16>>(1_h, 2_h, 3_h, 4_h, 5_h, 6_h)); |
| Func("f", tint::Empty, ty.void_(), |
| Vector{ |
| Decl(Let("l", Expr(var))), |
| }); |
| |
| ASTPrinter& gen = Build(); |
| gen.Generate(); |
| EXPECT_THAT(gen.Diagnostics(), testing::IsEmpty()); |
| EXPECT_EQ(gen.Result(), R"(#version 310 es |
| #extension GL_AMD_gpu_shader_half_float : require |
| |
| void f() { |
| f16mat2x3 l = f16mat2x3(f16vec3(1.0hf, 2.0hf, 3.0hf), f16vec3(4.0hf, 5.0hf, 6.0hf)); |
| } |
| |
| )"); |
| } |
| |
| TEST_F(GlslASTPrinterTest_ModuleConstant, Emit_GlobalConst_arr_f32) { |
| auto* var = GlobalConst("G", Call<array<f32, 3>>(1_f, 2_f, 3_f)); |
| Func("f", tint::Empty, ty.void_(), |
| Vector{ |
| Decl(Let("l", Expr(var))), |
| }); |
| |
| ASTPrinter& gen = Build(); |
| gen.Generate(); |
| EXPECT_THAT(gen.Diagnostics(), testing::IsEmpty()); |
| EXPECT_EQ(gen.Result(), R"(#version 310 es |
| |
| void f() { |
| float l[3] = float[3](1.0f, 2.0f, 3.0f); |
| } |
| |
| )"); |
| } |
| |
| TEST_F(GlslASTPrinterTest_ModuleConstant, Emit_GlobalConst_arr_vec2_bool) { |
| auto* var = GlobalConst("G", Call<array<vec2<bool>, 3>>( // |
| Call<vec2<bool>>(true, false), // |
| Call<vec2<bool>>(false, true), // |
| Call<vec2<bool>>(true, true))); |
| Func("f", tint::Empty, ty.void_(), |
| Vector{ |
| Decl(Let("l", Expr(var))), |
| }); |
| |
| ASTPrinter& gen = Build(); |
| gen.Generate(); |
| EXPECT_THAT(gen.Diagnostics(), testing::IsEmpty()); |
| EXPECT_EQ(gen.Result(), R"(#version 310 es |
| |
| void f() { |
| bvec2 l[3] = bvec2[3](bvec2(true, false), bvec2(false, true), bvec2(true)); |
| } |
| |
| )"); |
| } |
| |
| } // namespace |
| } // namespace tint::glsl::writer |