mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-08-31 16:00:28 +00:00
These suffixes existed because the GN build errored when there were two files sets with the same name (ast + sem). This is no longer required as the GN build splits these into two separate targets. Change-Id: Ib451da33a5f4aa5c867cb99419dd252766dc3daa Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/88308 Commit-Queue: Ben Clayton <bclayton@google.com> Reviewed-by: James Price <jrprice@google.com> Reviewed-by: Dan Sinclair <dsinclair@chromium.org> Kokoro: Kokoro <noreply+kokoro@google.com>
96 lines
3.3 KiB
C++
96 lines
3.3 KiB
C++
// Copyright 2020 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/reader/wgsl/parser_impl_test_helper.h"
|
|
#include "src/tint/sem/depth_texture.h"
|
|
|
|
namespace tint::reader::wgsl {
|
|
namespace {
|
|
|
|
TEST_F(ParserImplTest, DepthTextureType_Invalid) {
|
|
auto p = parser("1234");
|
|
auto t = p->depth_texture();
|
|
EXPECT_FALSE(t.matched);
|
|
EXPECT_FALSE(t.errored);
|
|
EXPECT_FALSE(p->has_error());
|
|
}
|
|
|
|
TEST_F(ParserImplTest, DepthTextureType_2d) {
|
|
auto p = parser("texture_depth_2d");
|
|
auto t = p->depth_texture();
|
|
EXPECT_TRUE(t.matched);
|
|
EXPECT_FALSE(t.errored);
|
|
ASSERT_NE(t.value, nullptr);
|
|
ASSERT_TRUE(t->Is<ast::Texture>());
|
|
ASSERT_TRUE(t->Is<ast::DepthTexture>());
|
|
EXPECT_EQ(t->As<ast::Texture>()->dim, ast::TextureDimension::k2d);
|
|
EXPECT_FALSE(p->has_error());
|
|
EXPECT_EQ(t.value->source.range, (Source::Range{{1u, 1u}, {1u, 17u}}));
|
|
}
|
|
|
|
TEST_F(ParserImplTest, DepthTextureType_2dArray) {
|
|
auto p = parser("texture_depth_2d_array");
|
|
auto t = p->depth_texture();
|
|
EXPECT_TRUE(t.matched);
|
|
EXPECT_FALSE(t.errored);
|
|
ASSERT_NE(t.value, nullptr);
|
|
ASSERT_TRUE(t->Is<ast::Texture>());
|
|
ASSERT_TRUE(t->Is<ast::DepthTexture>());
|
|
EXPECT_EQ(t->As<ast::Texture>()->dim, ast::TextureDimension::k2dArray);
|
|
EXPECT_FALSE(p->has_error());
|
|
EXPECT_EQ(t.value->source.range, (Source::Range{{1u, 1u}, {1u, 23u}}));
|
|
}
|
|
|
|
TEST_F(ParserImplTest, DepthTextureType_Cube) {
|
|
auto p = parser("texture_depth_cube");
|
|
auto t = p->depth_texture();
|
|
EXPECT_TRUE(t.matched);
|
|
EXPECT_FALSE(t.errored);
|
|
ASSERT_NE(t.value, nullptr);
|
|
ASSERT_TRUE(t->Is<ast::Texture>());
|
|
ASSERT_TRUE(t->Is<ast::DepthTexture>());
|
|
EXPECT_EQ(t->As<ast::Texture>()->dim, ast::TextureDimension::kCube);
|
|
EXPECT_FALSE(p->has_error());
|
|
EXPECT_EQ(t.value->source.range, (Source::Range{{1u, 1u}, {1u, 19u}}));
|
|
}
|
|
|
|
TEST_F(ParserImplTest, DepthTextureType_CubeArray) {
|
|
auto p = parser("texture_depth_cube_array");
|
|
auto t = p->depth_texture();
|
|
EXPECT_TRUE(t.matched);
|
|
EXPECT_FALSE(t.errored);
|
|
ASSERT_NE(t.value, nullptr);
|
|
ASSERT_TRUE(t->Is<ast::Texture>());
|
|
ASSERT_TRUE(t->Is<ast::DepthTexture>());
|
|
EXPECT_EQ(t->As<ast::Texture>()->dim, ast::TextureDimension::kCubeArray);
|
|
EXPECT_FALSE(p->has_error());
|
|
EXPECT_EQ(t.value->source.range, (Source::Range{{1u, 1u}, {1u, 25u}}));
|
|
}
|
|
|
|
TEST_F(ParserImplTest, DepthTextureType_Multisampled2d) {
|
|
auto p = parser("texture_depth_multisampled_2d");
|
|
auto t = p->depth_texture();
|
|
EXPECT_TRUE(t.matched);
|
|
EXPECT_FALSE(t.errored);
|
|
ASSERT_NE(t.value, nullptr);
|
|
ASSERT_TRUE(t->Is<ast::Texture>());
|
|
ASSERT_TRUE(t->Is<ast::DepthMultisampledTexture>());
|
|
EXPECT_EQ(t->As<ast::Texture>()->dim, ast::TextureDimension::k2d);
|
|
EXPECT_FALSE(p->has_error());
|
|
EXPECT_EQ(t.value->source.range, (Source::Range{{1u, 1u}, {1u, 30u}}));
|
|
}
|
|
|
|
} // namespace
|
|
} // namespace tint::reader::wgsl
|