// 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_COMMON_BINDGROUP_H_ #define BACKEND_COMMON_BINDGROUP_H_ #include "Forward.h" #include "RefCounted.h" #include "nxt/nxtcpp.h" #include #include #include namespace backend { class BindGroupBase : public RefCounted { public: BindGroupBase(BindGroupBuilder* builder); const BindGroupLayoutBase* GetLayout() const; nxt::BindGroupUsage GetUsage() const; BufferViewBase* GetBindingAsBufferView(size_t binding); SamplerBase* GetBindingAsSampler(size_t binding); TextureViewBase* GetBindingAsTextureView(size_t binding); private: Ref layout; nxt::BindGroupUsage usage; std::array, kMaxBindingsPerGroup> bindings; }; class BindGroupBuilder : public RefCounted { public: BindGroupBuilder(DeviceBase* device); bool WasConsumed() const; // NXT API BindGroupBase* GetResult(); void SetLayout(BindGroupLayoutBase* layout); void SetUsage(nxt::BindGroupUsage usage); template void SetBufferViews(uint32_t start, uint32_t count, T* const* bufferViews) { static_assert(std::is_base_of::value, ""); SetBufferViews(start, count, reinterpret_cast(bufferViews)); } void SetBufferViews(uint32_t start, uint32_t count, BufferViewBase* const * bufferViews); template void SetSamplers(uint32_t start, uint32_t count, T* const* samplers) { static_assert(std::is_base_of::value, ""); SetSamplers(start, count, reinterpret_cast(samplers)); } void SetSamplers(uint32_t start, uint32_t count, SamplerBase* const * samplers); template void SetTextureViews(uint32_t start, uint32_t count, T* const* textureViews) { static_assert(std::is_base_of::value, ""); SetTextureViews(start, count, reinterpret_cast(textureViews)); } void SetTextureViews(uint32_t start, uint32_t count, TextureViewBase* const * textureViews); private: friend class BindGroupBase; void SetBindingsBase(uint32_t start, uint32_t count, RefCounted* const * objects); bool SetBindingsValidationBase(uint32_t start, uint32_t count); DeviceBase* device; std::bitset setMask; int propertiesSet = 0; bool consumed = false; Ref layout; nxt::BindGroupUsage usage; std::array, kMaxBindingsPerGroup> bindings; }; } #endif // BACKEND_COMMON_BINDGROUP_H_