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_BINDGROUP_H_
|
|
|
|
#define DAWNNATIVE_BINDGROUP_H_
|
2017-04-20 18:38:20 +00:00
|
|
|
|
2017-07-06 18:41:13 +00:00
|
|
|
#include "common/Constants.h"
|
2018-07-24 11:53:51 +00:00
|
|
|
#include "dawn_native/BindGroupLayout.h"
|
2018-12-05 07:18:30 +00:00
|
|
|
#include "dawn_native/Error.h"
|
2018-07-24 11:53:51 +00:00
|
|
|
#include "dawn_native/Forward.h"
|
2018-10-15 12:54:30 +00:00
|
|
|
#include "dawn_native/ObjectBase.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>
|
|
|
|
|
2018-07-24 14:45:45 +00:00
|
|
|
namespace dawn_native {
|
2017-04-20 18:38:20 +00:00
|
|
|
|
2018-12-05 07:18:30 +00:00
|
|
|
class DeviceBase;
|
|
|
|
|
|
|
|
MaybeError ValidateBindGroupDescriptor(DeviceBase* device,
|
|
|
|
const BindGroupDescriptor* descriptor);
|
|
|
|
|
2018-12-07 12:31:53 +00:00
|
|
|
struct BufferBinding {
|
|
|
|
BufferBase* buffer;
|
2019-04-05 20:51:29 +00:00
|
|
|
uint64_t offset;
|
|
|
|
uint64_t size;
|
2018-12-07 12:31:53 +00:00
|
|
|
};
|
|
|
|
|
2018-10-15 12:54:30 +00:00
|
|
|
class BindGroupBase : public ObjectBase {
|
2017-11-24 18:59:42 +00:00
|
|
|
public:
|
2018-12-05 07:18:30 +00:00
|
|
|
BindGroupBase(DeviceBase* device, const BindGroupDescriptor* descriptor);
|
2017-11-24 18:59:42 +00:00
|
|
|
|
2019-02-13 13:09:18 +00:00
|
|
|
static BindGroupBase* MakeError(DeviceBase* device);
|
|
|
|
|
2017-11-24 18:59:42 +00:00
|
|
|
const BindGroupLayoutBase* GetLayout() const;
|
2018-12-07 12:31:53 +00:00
|
|
|
BufferBinding GetBindingAsBufferBinding(size_t binding);
|
2017-11-24 18:59:42 +00:00
|
|
|
SamplerBase* GetBindingAsSampler(size_t binding);
|
|
|
|
TextureViewBase* GetBindingAsTextureView(size_t binding);
|
|
|
|
|
|
|
|
private:
|
2019-02-13 13:09:18 +00:00
|
|
|
BindGroupBase(DeviceBase* device, ObjectBase::ErrorTag tag);
|
|
|
|
|
2017-11-24 18:59:42 +00:00
|
|
|
Ref<BindGroupLayoutBase> mLayout;
|
2018-10-15 12:54:30 +00:00
|
|
|
std::array<Ref<ObjectBase>, kMaxBindingsPerGroup> mBindings;
|
2018-12-07 12:31:53 +00:00
|
|
|
std::array<uint32_t, kMaxBindingsPerGroup> mOffsets;
|
|
|
|
std::array<uint32_t, kMaxBindingsPerGroup> mSizes;
|
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_BINDGROUP_H_
|