Corentin Wallez | 4a9ef4e | 2018-07-18 11:40:26 +0200 | [diff] [blame] | 1 | // Copyright 2017 The Dawn Authors |
Corentin Wallez | f07e3bd | 2017-04-20 14:38:20 -0400 | [diff] [blame] | 2 | // |
| 3 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | // you may not use this file except in compliance with the License. |
| 5 | // You may obtain a copy of the License at |
| 6 | // |
| 7 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | // |
| 9 | // Unless required by applicable law or agreed to in writing, software |
| 10 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | // See the License for the specific language governing permissions and |
| 13 | // limitations under the License. |
| 14 | |
Corentin Wallez | d37523f | 2018-07-24 13:53:51 +0200 | [diff] [blame] | 15 | #include "dawn_native/opengl/PipelineLayoutGL.h" |
Corentin Wallez | f07e3bd | 2017-04-20 14:38:20 -0400 | [diff] [blame] | 16 | |
Kai Ninomiya | 311e2a4 | 2018-06-29 18:22:02 -0700 | [diff] [blame] | 17 | #include "common/BitSetIterator.h" |
Corentin Wallez | d37523f | 2018-07-24 13:53:51 +0200 | [diff] [blame] | 18 | #include "dawn_native/BindGroupLayout.h" |
| 19 | #include "dawn_native/opengl/DeviceGL.h" |
Corentin Wallez | f07e3bd | 2017-04-20 14:38:20 -0400 | [diff] [blame] | 20 | |
Corentin Wallez | 49a65d0 | 2018-07-24 16:45:45 +0200 | [diff] [blame] | 21 | namespace dawn_native { namespace opengl { |
Corentin Wallez | f07e3bd | 2017-04-20 14:38:20 -0400 | [diff] [blame] | 22 | |
Corentin Wallez | 36afbb6 | 2018-07-25 17:03:23 +0200 | [diff] [blame] | 23 | PipelineLayout::PipelineLayout(Device* device, const PipelineLayoutDescriptor* descriptor) |
Kai Ninomiya | f53f98b | 2018-06-27 16:21:39 -0700 | [diff] [blame] | 24 | : PipelineLayoutBase(device, descriptor) { |
Corentin Wallez | f07e3bd | 2017-04-20 14:38:20 -0400 | [diff] [blame] | 25 | GLuint uboIndex = 0; |
| 26 | GLuint samplerIndex = 0; |
| 27 | GLuint sampledTextureIndex = 0; |
| 28 | GLuint ssboIndex = 0; |
Jiawei Shao | 0e5301c | 2020-05-29 07:51:08 +0000 | [diff] [blame] | 29 | GLuint storageTextureIndex = 0; |
Corentin Wallez | f07e3bd | 2017-04-20 14:38:20 -0400 | [diff] [blame] | 30 | |
Austin Eng | 250f262 | 2020-06-20 01:30:32 +0000 | [diff] [blame] | 31 | for (BindGroupIndex group : IterateBitSet(GetBindGroupLayoutsMask())) { |
Austin Eng | 0847cb4 | 2020-03-26 17:22:14 +0000 | [diff] [blame] | 32 | const BindGroupLayoutBase* bgl = GetBindGroupLayout(group); |
Austin Eng | b31f5e7 | 2020-07-14 22:20:35 +0000 | [diff] [blame] | 33 | mIndexInfo[group].resize(bgl->GetBindingCount()); |
Corentin Wallez | f07e3bd | 2017-04-20 14:38:20 -0400 | [diff] [blame] | 34 | |
Austin Eng | 7a4685f | 2020-06-17 22:35:19 +0000 | [diff] [blame] | 35 | for (BindingIndex bindingIndex{0}; bindingIndex < bgl->GetBindingCount(); |
Austin Eng | a80993d | 2020-03-20 21:56:30 +0000 | [diff] [blame] | 36 | ++bindingIndex) { |
Brandon Jones | 3af532b | 2020-12-21 20:14:26 +0000 | [diff] [blame] | 37 | const BindingInfo& bindingInfo = bgl->GetBindingInfo(bindingIndex); |
| 38 | switch (bindingInfo.bindingType) { |
| 39 | case BindingInfoType::Buffer: |
| 40 | switch (bindingInfo.buffer.type) { |
| 41 | case wgpu::BufferBindingType::Uniform: |
| 42 | mIndexInfo[group][bindingIndex] = uboIndex; |
| 43 | uboIndex++; |
| 44 | break; |
| 45 | case wgpu::BufferBindingType::Storage: |
Li Hao | b936d23 | 2021-06-16 14:33:27 +0000 | [diff] [blame] | 46 | case kInternalStorageBufferBinding: |
Brandon Jones | 3af532b | 2020-12-21 20:14:26 +0000 | [diff] [blame] | 47 | case wgpu::BufferBindingType::ReadOnlyStorage: |
| 48 | mIndexInfo[group][bindingIndex] = ssboIndex; |
| 49 | ssboIndex++; |
| 50 | break; |
| 51 | case wgpu::BufferBindingType::Undefined: |
| 52 | UNREACHABLE(); |
| 53 | } |
Corentin Wallez | f07e3bd | 2017-04-20 14:38:20 -0400 | [diff] [blame] | 54 | break; |
Brandon Jones | 3af532b | 2020-12-21 20:14:26 +0000 | [diff] [blame] | 55 | |
| 56 | case BindingInfoType::Sampler: |
Austin Eng | a80993d | 2020-03-20 21:56:30 +0000 | [diff] [blame] | 57 | mIndexInfo[group][bindingIndex] = samplerIndex; |
Corentin Wallez | c7807ab | 2017-11-24 14:16:15 -0500 | [diff] [blame] | 58 | samplerIndex++; |
Corentin Wallez | f07e3bd | 2017-04-20 14:38:20 -0400 | [diff] [blame] | 59 | break; |
Brandon Jones | 3af532b | 2020-12-21 20:14:26 +0000 | [diff] [blame] | 60 | |
| 61 | case BindingInfoType::Texture: |
Brandon Jones | 39633e2 | 2021-06-01 19:45:53 +0000 | [diff] [blame] | 62 | case BindingInfoType::ExternalTexture: |
Austin Eng | a80993d | 2020-03-20 21:56:30 +0000 | [diff] [blame] | 63 | mIndexInfo[group][bindingIndex] = sampledTextureIndex; |
Corentin Wallez | c7807ab | 2017-11-24 14:16:15 -0500 | [diff] [blame] | 64 | sampledTextureIndex++; |
Corentin Wallez | f07e3bd | 2017-04-20 14:38:20 -0400 | [diff] [blame] | 65 | break; |
| 66 | |
Brandon Jones | 3af532b | 2020-12-21 20:14:26 +0000 | [diff] [blame] | 67 | case BindingInfoType::StorageTexture: |
Jiawei Shao | 0e5301c | 2020-05-29 07:51:08 +0000 | [diff] [blame] | 68 | mIndexInfo[group][bindingIndex] = storageTextureIndex; |
| 69 | storageTextureIndex++; |
| 70 | break; |
Corentin Wallez | f07e3bd | 2017-04-20 14:38:20 -0400 | [diff] [blame] | 71 | } |
| 72 | } |
| 73 | } |
| 74 | |
Corentin Wallez | 7ee1610 | 2017-11-23 11:24:20 -0800 | [diff] [blame] | 75 | mNumSamplers = samplerIndex; |
| 76 | mNumSampledTextures = sampledTextureIndex; |
Corentin Wallez | f07e3bd | 2017-04-20 14:38:20 -0400 | [diff] [blame] | 77 | } |
| 78 | |
| 79 | const PipelineLayout::BindingIndexInfo& PipelineLayout::GetBindingIndexInfo() const { |
Corentin Wallez | 7ee1610 | 2017-11-23 11:24:20 -0800 | [diff] [blame] | 80 | return mIndexInfo; |
Corentin Wallez | f07e3bd | 2017-04-20 14:38:20 -0400 | [diff] [blame] | 81 | } |
| 82 | |
| 83 | GLuint PipelineLayout::GetTextureUnitsUsed() const { |
| 84 | return 0; |
| 85 | } |
| 86 | |
| 87 | size_t PipelineLayout::GetNumSamplers() const { |
Corentin Wallez | 7ee1610 | 2017-11-23 11:24:20 -0800 | [diff] [blame] | 88 | return mNumSamplers; |
Corentin Wallez | f07e3bd | 2017-04-20 14:38:20 -0400 | [diff] [blame] | 89 | } |
| 90 | |
| 91 | size_t PipelineLayout::GetNumSampledTextures() const { |
Corentin Wallez | 7ee1610 | 2017-11-23 11:24:20 -0800 | [diff] [blame] | 92 | return mNumSampledTextures; |
Corentin Wallez | f07e3bd | 2017-04-20 14:38:20 -0400 | [diff] [blame] | 93 | } |
| 94 | |
Corentin Wallez | 49a65d0 | 2018-07-24 16:45:45 +0200 | [diff] [blame] | 95 | }} // namespace dawn_native::opengl |