dawn-cmake/src/dawn_native/BindGroupLayout.h

67 lines
2.2 KiB
C
Raw Normal View History

// Copyright 2017 The Dawn 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_BINDGROUPLAYOUT_H_
#define BACKEND_BINDGROUPLAYOUT_H_
#include "common/Constants.h"
2018-07-24 11:53:51 +00:00
#include "dawn_native/Error.h"
#include "dawn_native/Forward.h"
#include "dawn_native/RefCounted.h"
2018-07-18 12:28:38 +00:00
#include "dawn/dawncpp.h"
#include <array>
#include <bitset>
namespace backend {
MaybeError ValidateBindGroupLayoutDescriptor(DeviceBase*,
2018-07-18 09:38:11 +00:00
const dawn::BindGroupLayoutDescriptor* descriptor);
class BindGroupLayoutBase : public RefCounted {
2017-11-24 18:59:42 +00:00
public:
BindGroupLayoutBase(DeviceBase* device,
2018-07-18 09:38:11 +00:00
const dawn::BindGroupLayoutDescriptor* descriptor,
bool blueprint = false);
2017-11-24 18:59:42 +00:00
~BindGroupLayoutBase() override;
struct LayoutBindingInfo {
2018-07-18 09:38:11 +00:00
std::array<dawn::ShaderStageBit, kMaxBindingsPerGroup> visibilities;
std::array<dawn::BindingType, kMaxBindingsPerGroup> types;
2017-11-24 18:59:42 +00:00
std::bitset<kMaxBindingsPerGroup> mask;
};
const LayoutBindingInfo& GetBindingInfo() const;
2018-02-02 18:06:58 +00:00
DeviceBase* GetDevice() const;
2017-11-24 18:59:42 +00:00
private:
DeviceBase* mDevice;
LayoutBindingInfo mBindingInfo;
bool mIsBlueprint = false;
};
// Implements the functors necessary for the unordered_set<BGL*>-based cache.
struct BindGroupLayoutCacheFuncs {
// The hash function
2017-11-24 18:59:42 +00:00
size_t operator()(const BindGroupLayoutBase* bgl) const;
// The equality predicate
2017-11-24 18:59:42 +00:00
bool operator()(const BindGroupLayoutBase* a, const BindGroupLayoutBase* b) const;
};
2017-11-24 18:59:42 +00:00
} // namespace backend
2017-11-24 18:59:42 +00:00
#endif // BACKEND_BINDGROUPLAYOUT_H_