2018-07-18 09:40:26 +00:00
|
|
|
// Copyright 2017 The Dawn Authors
|
2017-04-20 18:38:20 +00:00
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
|
2018-07-24 11:53:51 +00:00
|
|
|
#include "dawn_native/BindGroupLayout.h"
|
2017-04-20 18:38:20 +00:00
|
|
|
|
2018-05-09 18:08:17 +00:00
|
|
|
#include "common/BitSetIterator.h"
|
2018-05-07 21:33:48 +00:00
|
|
|
#include "common/HashUtils.h"
|
2018-07-24 11:53:51 +00:00
|
|
|
#include "dawn_native/Device.h"
|
|
|
|
#include "dawn_native/ValidationUtils_autogen.h"
|
2017-04-20 18:38:20 +00:00
|
|
|
|
|
|
|
#include <functional>
|
|
|
|
|
2018-07-24 14:45:45 +00:00
|
|
|
namespace dawn_native {
|
2017-04-20 18:38:20 +00:00
|
|
|
|
2018-07-18 09:38:11 +00:00
|
|
|
MaybeError ValidateBindGroupLayoutDescriptor(
|
|
|
|
DeviceBase*,
|
|
|
|
const dawn::BindGroupLayoutDescriptor* descriptor) {
|
2018-07-18 09:45:17 +00:00
|
|
|
DAWN_TRY_ASSERT(descriptor->nextInChain == nullptr, "nextInChain must be nullptr");
|
2018-07-10 19:23:50 +00:00
|
|
|
|
|
|
|
std::bitset<kMaxBindingsPerGroup> bindingsSet;
|
|
|
|
for (uint32_t i = 0; i < descriptor->numBindings; ++i) {
|
|
|
|
auto& binding = descriptor->bindings[i];
|
2018-07-18 09:45:17 +00:00
|
|
|
DAWN_TRY_ASSERT(binding.binding <= kMaxBindingsPerGroup,
|
|
|
|
"some binding index exceeds the maximum value");
|
|
|
|
DAWN_TRY(ValidateShaderStageBit(binding.visibility));
|
|
|
|
DAWN_TRY(ValidateBindingType(binding.type));
|
2018-07-10 19:23:50 +00:00
|
|
|
|
2018-07-19 13:52:31 +00:00
|
|
|
DAWN_TRY_ASSERT(!bindingsSet[binding.binding],
|
|
|
|
"some binding index was specified more than once");
|
2018-07-10 19:23:50 +00:00
|
|
|
bindingsSet.set(binding.binding);
|
|
|
|
}
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2017-04-20 18:38:20 +00:00
|
|
|
namespace {
|
|
|
|
size_t HashBindingInfo(const BindGroupLayoutBase::LayoutBindingInfo& info) {
|
|
|
|
size_t hash = Hash(info.mask);
|
|
|
|
|
2018-05-09 18:08:17 +00:00
|
|
|
for (uint32_t binding : IterateBitSet(info.mask)) {
|
|
|
|
HashCombine(&hash, info.visibilities[binding], info.types[binding]);
|
2017-04-20 18:38:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return hash;
|
|
|
|
}
|
|
|
|
|
2017-11-24 18:59:42 +00:00
|
|
|
bool operator==(const BindGroupLayoutBase::LayoutBindingInfo& a,
|
|
|
|
const BindGroupLayoutBase::LayoutBindingInfo& b) {
|
2017-04-20 18:38:20 +00:00
|
|
|
if (a.mask != b.mask) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-05-09 18:08:17 +00:00
|
|
|
for (uint32_t binding : IterateBitSet(a.mask)) {
|
2018-05-02 22:10:13 +00:00
|
|
|
if ((a.visibilities[binding] != b.visibilities[binding]) ||
|
|
|
|
(a.types[binding] != b.types[binding])) {
|
2018-05-09 18:08:17 +00:00
|
|
|
return false;
|
2017-04-20 18:38:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2017-11-24 18:59:42 +00:00
|
|
|
} // namespace
|
2017-04-20 18:38:20 +00:00
|
|
|
|
|
|
|
// BindGroupLayoutBase
|
|
|
|
|
2018-07-10 19:23:50 +00:00
|
|
|
BindGroupLayoutBase::BindGroupLayoutBase(DeviceBase* device,
|
2018-07-18 09:38:11 +00:00
|
|
|
const dawn::BindGroupLayoutDescriptor* descriptor,
|
2018-07-10 19:23:50 +00:00
|
|
|
bool blueprint)
|
|
|
|
: mDevice(device), mIsBlueprint(blueprint) {
|
|
|
|
for (uint32_t i = 0; i < descriptor->numBindings; ++i) {
|
|
|
|
auto& binding = descriptor->bindings[i];
|
|
|
|
|
|
|
|
uint32_t index = binding.binding;
|
|
|
|
mBindingInfo.visibilities[index] = binding.visibility;
|
|
|
|
mBindingInfo.types[index] = binding.type;
|
|
|
|
|
|
|
|
ASSERT(!mBindingInfo.mask[index]);
|
|
|
|
mBindingInfo.mask.set(index);
|
|
|
|
}
|
2017-04-20 18:38:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
BindGroupLayoutBase::~BindGroupLayoutBase() {
|
2018-07-16 15:40:08 +00:00
|
|
|
// Do not uncache the actual cached object if we are a blueprint
|
2017-11-23 18:32:51 +00:00
|
|
|
if (!mIsBlueprint) {
|
|
|
|
mDevice->UncacheBindGroupLayout(this);
|
2017-04-20 18:38:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const BindGroupLayoutBase::LayoutBindingInfo& BindGroupLayoutBase::GetBindingInfo() const {
|
2017-11-23 18:32:51 +00:00
|
|
|
return mBindingInfo;
|
2017-04-20 18:38:20 +00:00
|
|
|
}
|
|
|
|
|
2018-02-02 18:06:58 +00:00
|
|
|
DeviceBase* BindGroupLayoutBase::GetDevice() const {
|
|
|
|
return mDevice;
|
|
|
|
}
|
|
|
|
|
2017-04-20 18:38:20 +00:00
|
|
|
// BindGroupLayoutCacheFuncs
|
|
|
|
|
2017-11-24 18:59:42 +00:00
|
|
|
size_t BindGroupLayoutCacheFuncs::operator()(const BindGroupLayoutBase* bgl) const {
|
2017-04-20 18:38:20 +00:00
|
|
|
return HashBindingInfo(bgl->GetBindingInfo());
|
|
|
|
}
|
|
|
|
|
2017-11-24 18:59:42 +00:00
|
|
|
bool BindGroupLayoutCacheFuncs::operator()(const BindGroupLayoutBase* a,
|
|
|
|
const BindGroupLayoutBase* b) const {
|
2017-04-20 18:38:20 +00:00
|
|
|
return a->GetBindingInfo() == b->GetBindingInfo();
|
|
|
|
}
|
|
|
|
|
2018-07-24 14:45:45 +00:00
|
|
|
} // namespace dawn_native
|