mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-08-25 13:12:00 +00:00
This CL moves the ast::InterpolateSampling and ast::InterpolationType to builtin:: Change-Id: Iad9365ff629cbb7b3b03de6a4cd9355a21ce287e Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/120442 Kokoro: Kokoro <noreply+kokoro@google.com> Commit-Queue: Ben Clayton <bclayton@google.com> Reviewed-by: Ben Clayton <bclayton@google.com>
97 lines
3.1 KiB
C++
97 lines
3.1 KiB
C++
// Copyright 2023 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.
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
// File generated by tools/src/cmd/gen
|
|
// using the template:
|
|
// src/tint/builtin/interpolation_sampling_test.cc.tmpl
|
|
//
|
|
// Do not modify this file directly
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include "src/tint/builtin/interpolation_sampling.h"
|
|
|
|
#include <gtest/gtest.h>
|
|
#include <string>
|
|
|
|
#include "src/tint/utils/string.h"
|
|
|
|
namespace tint::builtin {
|
|
namespace {
|
|
|
|
namespace interpolation_sampling_tests {
|
|
|
|
namespace parse_print_tests {
|
|
|
|
struct Case {
|
|
const char* string;
|
|
InterpolationSampling value;
|
|
};
|
|
|
|
inline std::ostream& operator<<(std::ostream& out, Case c) {
|
|
return out << "'" << std::string(c.string) << "'";
|
|
}
|
|
|
|
static constexpr Case kValidCases[] = {
|
|
{"center", InterpolationSampling::kCenter},
|
|
{"centroid", InterpolationSampling::kCentroid},
|
|
{"sample", InterpolationSampling::kSample},
|
|
};
|
|
|
|
static constexpr Case kInvalidCases[] = {
|
|
{"ccnter", InterpolationSampling::kUndefined},
|
|
{"c3r", InterpolationSampling::kUndefined},
|
|
{"centeV", InterpolationSampling::kUndefined},
|
|
{"1entroid", InterpolationSampling::kUndefined},
|
|
{"enJrqqid", InterpolationSampling::kUndefined},
|
|
{"llen77roid", InterpolationSampling::kUndefined},
|
|
{"sapppHHe", InterpolationSampling::kUndefined},
|
|
{"cam", InterpolationSampling::kUndefined},
|
|
{"sbGpl", InterpolationSampling::kUndefined},
|
|
};
|
|
|
|
using InterpolationSamplingParseTest = testing::TestWithParam<Case>;
|
|
|
|
TEST_P(InterpolationSamplingParseTest, Parse) {
|
|
const char* string = GetParam().string;
|
|
InterpolationSampling expect = GetParam().value;
|
|
EXPECT_EQ(expect, ParseInterpolationSampling(string));
|
|
}
|
|
|
|
INSTANTIATE_TEST_SUITE_P(ValidCases,
|
|
InterpolationSamplingParseTest,
|
|
testing::ValuesIn(kValidCases));
|
|
INSTANTIATE_TEST_SUITE_P(InvalidCases,
|
|
InterpolationSamplingParseTest,
|
|
testing::ValuesIn(kInvalidCases));
|
|
|
|
using InterpolationSamplingPrintTest = testing::TestWithParam<Case>;
|
|
|
|
TEST_P(InterpolationSamplingPrintTest, Print) {
|
|
InterpolationSampling value = GetParam().value;
|
|
const char* expect = GetParam().string;
|
|
EXPECT_EQ(expect, utils::ToString(value));
|
|
}
|
|
|
|
INSTANTIATE_TEST_SUITE_P(ValidCases,
|
|
InterpolationSamplingPrintTest,
|
|
testing::ValuesIn(kValidCases));
|
|
|
|
} // namespace parse_print_tests
|
|
|
|
} // namespace interpolation_sampling_tests
|
|
|
|
} // namespace
|
|
} // namespace tint::builtin
|