dawn-cmake/src/backend/PipelineLayout.h

71 lines
2.2 KiB
C
Raw Normal View History

// Copyright 2017 The NXT 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.
#ifndef BACKEND_PIPELINELAYOUT_H_
#define BACKEND_PIPELINELAYOUT_H_
#include "backend/Builder.h"
2017-11-24 18:59:42 +00:00
#include "backend/Forward.h"
#include "backend/RefCounted.h"
#include "common/Constants.h"
#include "nxt/nxtcpp.h"
#include <array>
#include <bitset>
namespace backend {
using BindGroupLayoutArray = std::array<Ref<BindGroupLayoutBase>, kMaxBindGroups>;
class PipelineLayoutBase : public RefCounted {
2017-11-24 18:59:42 +00:00
public:
PipelineLayoutBase(PipelineLayoutBuilder* builder);
2017-11-24 18:59:42 +00:00
const BindGroupLayoutBase* GetBindGroupLayout(size_t group) const;
const std::bitset<kMaxBindGroups> GetBindGroupsLayoutMask() const;
2017-11-24 18:59:42 +00:00
// Utility functions to compute inherited bind groups.
// Returns the inherited bind groups as a mask.
std::bitset<kMaxBindGroups> InheritedGroupsMask(const PipelineLayoutBase* other) const;
2017-11-24 18:59:42 +00:00
// Returns the index of the first incompatible bind group in the range
// [1, kMaxBindGroups + 1]
uint32_t GroupsInheritUpTo(const PipelineLayoutBase* other) const;
2017-11-24 18:59:42 +00:00
protected:
BindGroupLayoutArray mBindGroupLayouts;
std::bitset<kMaxBindGroups> mMask;
};
class PipelineLayoutBuilder : public Builder<PipelineLayoutBase> {
2017-11-24 18:59:42 +00:00
public:
PipelineLayoutBuilder(DeviceBase* device);
2017-11-24 18:59:42 +00:00
// NXT API
void SetBindGroupLayout(uint32_t groupIndex, BindGroupLayoutBase* layout);
2017-11-24 18:59:42 +00:00
private:
friend class PipelineLayoutBase;
2017-11-24 18:59:42 +00:00
PipelineLayoutBase* GetResultImpl() override;
2017-11-24 18:59:42 +00:00
BindGroupLayoutArray mBindGroupLayouts;
std::bitset<kMaxBindGroups> mMask;
};
2017-11-24 18:59:42 +00:00
} // namespace backend
2017-11-24 18:59:42 +00:00
#endif // BACKEND_PIPELINELAYOUT_H_