blob: a1742a54b54db0a3156e55e5cd4f129bf97cb5b1 [file] [log] [blame]
Corentin Wallez4a9ef4e2018-07-18 11:40:26 +02001// Copyright 2017 The Dawn Authors
Corentin Wallezf07e3bd2017-04-20 14:38:20 -04002//
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 Wallezd37523f2018-07-24 13:53:51 +020015#include "dawn_native/opengl/PipelineLayoutGL.h"
Corentin Wallezf07e3bd2017-04-20 14:38:20 -040016
Kai Ninomiya311e2a42018-06-29 18:22:02 -070017#include "common/BitSetIterator.h"
Corentin Wallezd37523f2018-07-24 13:53:51 +020018#include "dawn_native/BindGroupLayout.h"
19#include "dawn_native/opengl/DeviceGL.h"
Corentin Wallezf07e3bd2017-04-20 14:38:20 -040020
Corentin Wallez49a65d02018-07-24 16:45:45 +020021namespace dawn_native { namespace opengl {
Corentin Wallezf07e3bd2017-04-20 14:38:20 -040022
Corentin Wallez36afbb62018-07-25 17:03:23 +020023 PipelineLayout::PipelineLayout(Device* device, const PipelineLayoutDescriptor* descriptor)
Kai Ninomiyaf53f98b2018-06-27 16:21:39 -070024 : PipelineLayoutBase(device, descriptor) {
Corentin Wallezf07e3bd2017-04-20 14:38:20 -040025 GLuint uboIndex = 0;
26 GLuint samplerIndex = 0;
27 GLuint sampledTextureIndex = 0;
28 GLuint ssboIndex = 0;
Jiawei Shao0e5301c2020-05-29 07:51:08 +000029 GLuint storageTextureIndex = 0;
Corentin Wallezf07e3bd2017-04-20 14:38:20 -040030
Austin Eng250f2622020-06-20 01:30:32 +000031 for (BindGroupIndex group : IterateBitSet(GetBindGroupLayoutsMask())) {
Austin Eng0847cb42020-03-26 17:22:14 +000032 const BindGroupLayoutBase* bgl = GetBindGroupLayout(group);
Austin Engb31f5e72020-07-14 22:20:35 +000033 mIndexInfo[group].resize(bgl->GetBindingCount());
Corentin Wallezf07e3bd2017-04-20 14:38:20 -040034
Austin Eng7a4685f2020-06-17 22:35:19 +000035 for (BindingIndex bindingIndex{0}; bindingIndex < bgl->GetBindingCount();
Austin Enga80993d2020-03-20 21:56:30 +000036 ++bindingIndex) {
Brandon Jones3af532b2020-12-21 20:14:26 +000037 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 Haob936d232021-06-16 14:33:27 +000046 case kInternalStorageBufferBinding:
Brandon Jones3af532b2020-12-21 20:14:26 +000047 case wgpu::BufferBindingType::ReadOnlyStorage:
48 mIndexInfo[group][bindingIndex] = ssboIndex;
49 ssboIndex++;
50 break;
51 case wgpu::BufferBindingType::Undefined:
52 UNREACHABLE();
53 }
Corentin Wallezf07e3bd2017-04-20 14:38:20 -040054 break;
Brandon Jones3af532b2020-12-21 20:14:26 +000055
56 case BindingInfoType::Sampler:
Austin Enga80993d2020-03-20 21:56:30 +000057 mIndexInfo[group][bindingIndex] = samplerIndex;
Corentin Wallezc7807ab2017-11-24 14:16:15 -050058 samplerIndex++;
Corentin Wallezf07e3bd2017-04-20 14:38:20 -040059 break;
Brandon Jones3af532b2020-12-21 20:14:26 +000060
61 case BindingInfoType::Texture:
Brandon Jones39633e22021-06-01 19:45:53 +000062 case BindingInfoType::ExternalTexture:
Austin Enga80993d2020-03-20 21:56:30 +000063 mIndexInfo[group][bindingIndex] = sampledTextureIndex;
Corentin Wallezc7807ab2017-11-24 14:16:15 -050064 sampledTextureIndex++;
Corentin Wallezf07e3bd2017-04-20 14:38:20 -040065 break;
66
Brandon Jones3af532b2020-12-21 20:14:26 +000067 case BindingInfoType::StorageTexture:
Jiawei Shao0e5301c2020-05-29 07:51:08 +000068 mIndexInfo[group][bindingIndex] = storageTextureIndex;
69 storageTextureIndex++;
70 break;
Corentin Wallezf07e3bd2017-04-20 14:38:20 -040071 }
72 }
73 }
74
Corentin Wallez7ee16102017-11-23 11:24:20 -080075 mNumSamplers = samplerIndex;
76 mNumSampledTextures = sampledTextureIndex;
Corentin Wallezf07e3bd2017-04-20 14:38:20 -040077 }
78
79 const PipelineLayout::BindingIndexInfo& PipelineLayout::GetBindingIndexInfo() const {
Corentin Wallez7ee16102017-11-23 11:24:20 -080080 return mIndexInfo;
Corentin Wallezf07e3bd2017-04-20 14:38:20 -040081 }
82
83 GLuint PipelineLayout::GetTextureUnitsUsed() const {
84 return 0;
85 }
86
87 size_t PipelineLayout::GetNumSamplers() const {
Corentin Wallez7ee16102017-11-23 11:24:20 -080088 return mNumSamplers;
Corentin Wallezf07e3bd2017-04-20 14:38:20 -040089 }
90
91 size_t PipelineLayout::GetNumSampledTextures() const {
Corentin Wallez7ee16102017-11-23 11:24:20 -080092 return mNumSampledTextures;
Corentin Wallezf07e3bd2017-04-20 14:38:20 -040093 }
94
Corentin Wallez49a65d02018-07-24 16:45:45 +020095}} // namespace dawn_native::opengl