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 14:42:33 +00:00
|
|
|
#ifndef DAWNNATIVE_PIPELINELAYOUT_H_
|
|
|
|
#define DAWNNATIVE_PIPELINELAYOUT_H_
|
2017-04-20 18:38:20 +00:00
|
|
|
|
2017-07-06 18:41:13 +00:00
|
|
|
#include "common/Constants.h"
|
2020-06-20 01:30:32 +00:00
|
|
|
#include "common/ityp_array.h"
|
|
|
|
#include "common/ityp_bitset.h"
|
|
|
|
#include "dawn_native/BindingInfo.h"
|
2019-10-30 00:20:03 +00:00
|
|
|
#include "dawn_native/CachedObject.h"
|
2018-07-24 11:53:51 +00:00
|
|
|
#include "dawn_native/Error.h"
|
|
|
|
#include "dawn_native/Forward.h"
|
2017-04-20 18:38:20 +00:00
|
|
|
|
2018-07-25 15:03:23 +00:00
|
|
|
#include "dawn_native/dawn_platform.h"
|
2017-04-20 18:38:20 +00:00
|
|
|
|
|
|
|
#include <array>
|
|
|
|
#include <bitset>
|
|
|
|
|
2018-07-24 14:45:45 +00:00
|
|
|
namespace dawn_native {
|
2017-04-20 18:38:20 +00:00
|
|
|
|
2018-06-27 23:21:39 +00:00
|
|
|
MaybeError ValidatePipelineLayoutDescriptor(DeviceBase*,
|
2018-07-25 15:03:23 +00:00
|
|
|
const PipelineLayoutDescriptor* descriptor);
|
2018-06-27 23:21:39 +00:00
|
|
|
|
2020-06-20 01:30:32 +00:00
|
|
|
using BindGroupLayoutArray =
|
|
|
|
ityp::array<BindGroupIndex, Ref<BindGroupLayoutBase>, kMaxBindGroups>;
|
|
|
|
using BindGroupLayoutMask = ityp::bitset<BindGroupIndex, kMaxBindGroups>;
|
2017-04-20 18:38:20 +00:00
|
|
|
|
2019-10-30 00:20:03 +00:00
|
|
|
class PipelineLayoutBase : public CachedObject {
|
2017-11-24 18:59:42 +00:00
|
|
|
public:
|
2019-10-30 00:20:03 +00:00
|
|
|
PipelineLayoutBase(DeviceBase* device, const PipelineLayoutDescriptor* descriptor);
|
2019-05-01 12:57:27 +00:00
|
|
|
~PipelineLayoutBase() override;
|
2017-04-20 18:38:20 +00:00
|
|
|
|
2019-02-13 13:09:18 +00:00
|
|
|
static PipelineLayoutBase* MakeError(DeviceBase* device);
|
2019-11-22 17:02:22 +00:00
|
|
|
static ResultOrError<PipelineLayoutBase*>
|
|
|
|
CreateDefault(DeviceBase* device, const ShaderModuleBase* const* modules, uint32_t count);
|
2019-02-13 13:09:18 +00:00
|
|
|
|
2020-06-20 01:30:32 +00:00
|
|
|
const BindGroupLayoutBase* GetBindGroupLayout(BindGroupIndex group) const;
|
|
|
|
BindGroupLayoutBase* GetBindGroupLayout(BindGroupIndex group);
|
|
|
|
const BindGroupLayoutMask& GetBindGroupLayoutsMask() const;
|
2017-04-20 18:38:20 +00:00
|
|
|
|
2017-11-24 18:59:42 +00:00
|
|
|
// Utility functions to compute inherited bind groups.
|
|
|
|
// Returns the inherited bind groups as a mask.
|
2020-06-20 01:30:32 +00:00
|
|
|
BindGroupLayoutMask InheritedGroupsMask(const PipelineLayoutBase* other) const;
|
2017-07-15 05:37:06 +00:00
|
|
|
|
2017-11-24 18:59:42 +00:00
|
|
|
// Returns the index of the first incompatible bind group in the range
|
2020-06-20 01:30:32 +00:00
|
|
|
// [0, kMaxBindGroups]
|
|
|
|
BindGroupIndex GroupsInheritUpTo(const PipelineLayoutBase* other) const;
|
2017-07-15 05:37:06 +00:00
|
|
|
|
2019-05-01 12:57:27 +00:00
|
|
|
// Functors necessary for the unordered_set<PipelineLayoutBase*>-based cache.
|
|
|
|
struct HashFunc {
|
|
|
|
size_t operator()(const PipelineLayoutBase* pl) const;
|
|
|
|
};
|
|
|
|
struct EqualityFunc {
|
|
|
|
bool operator()(const PipelineLayoutBase* a, const PipelineLayoutBase* b) const;
|
|
|
|
};
|
|
|
|
|
2017-11-24 18:59:42 +00:00
|
|
|
protected:
|
2019-02-13 13:09:18 +00:00
|
|
|
PipelineLayoutBase(DeviceBase* device, ObjectBase::ErrorTag tag);
|
|
|
|
|
2017-11-24 18:59:42 +00:00
|
|
|
BindGroupLayoutArray mBindGroupLayouts;
|
2020-06-20 01:30:32 +00:00
|
|
|
BindGroupLayoutMask mMask;
|
2017-04-20 18:38:20 +00:00
|
|
|
};
|
|
|
|
|
2018-07-24 14:45:45 +00:00
|
|
|
} // namespace dawn_native
|
2017-04-20 18:38:20 +00:00
|
|
|
|
2018-07-24 14:42:33 +00:00
|
|
|
#endif // DAWNNATIVE_PIPELINELAYOUT_H_
|