mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-06-29 18:03:44 +00:00
This CL moves sem/type and copies sem/node into the type/ folder. The type subclasses are moved over to using type::Type while remaining in the sem:: namespace. They will be moved over in followup CLs. Bug: tint:1718 Change-Id: I3f3495328d734f88e4fc2dfbc6705343f1198dc5 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/113180 Reviewed-by: Ben Clayton <bclayton@chromium.org> Kokoro: Kokoro <noreply+kokoro@google.com> Commit-Queue: Dan Sinclair <dsinclair@chromium.org>
42 lines
1.3 KiB
C++
42 lines
1.3 KiB
C++
// 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/sem/external_texture.h"
|
|
|
|
#include "src/tint/program_builder.h"
|
|
|
|
TINT_INSTANTIATE_TYPEINFO(tint::sem::ExternalTexture);
|
|
|
|
namespace tint::sem {
|
|
|
|
ExternalTexture::ExternalTexture() : Base(ast::TextureDimension::k2d) {}
|
|
|
|
ExternalTexture::ExternalTexture(ExternalTexture&&) = default;
|
|
|
|
ExternalTexture::~ExternalTexture() = default;
|
|
|
|
size_t ExternalTexture::Hash() const {
|
|
return static_cast<size_t>(TypeInfo::Of<ExternalTexture>().full_hashcode);
|
|
}
|
|
|
|
bool ExternalTexture::Equals(const type::Type& other) const {
|
|
return other.Is<ExternalTexture>();
|
|
}
|
|
|
|
std::string ExternalTexture::FriendlyName(const SymbolTable&) const {
|
|
return "texture_external";
|
|
}
|
|
|
|
} // namespace tint::sem
|