mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-07-06 13:15:59 +00:00
This CL updates the WGSL parser to allow array decorations to accept multiple blocks. The stride decoration on arrays was turned into a proper decoration object instead of just storing the stride directly. Bug: tint:240 Change-Id: I6cdc7400d8847e3e043b846ea5c9f86cb795cf86 Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/29780 Commit-Queue: dan sinclair <dsinclair@chromium.org> Reviewed-by: Sarah Mashayekhi <sarahmashay@google.com> Reviewed-by: David Neto <dneto@google.com>
39 lines
1.0 KiB
C++
39 lines
1.0 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/ast/array_decoration.h"
|
|
|
|
#include <assert.h>
|
|
|
|
#include "src/ast/stride_decoration.h"
|
|
|
|
namespace tint {
|
|
namespace ast {
|
|
|
|
ArrayDecoration::ArrayDecoration() = default;
|
|
|
|
ArrayDecoration::~ArrayDecoration() = default;
|
|
|
|
bool ArrayDecoration::IsStride() const {
|
|
return false;
|
|
}
|
|
|
|
StrideDecoration* ArrayDecoration::AsStride() {
|
|
assert(IsStride());
|
|
return static_cast<StrideDecoration*>(this);
|
|
}
|
|
|
|
} // namespace ast
|
|
} // namespace tint
|