2019-08-08 17:21:39 +00:00
|
|
|
// Copyright 2019 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 DAWNNATIVE_PASSRESOURCEUSAGETRACKER_H_
|
|
|
|
#define DAWNNATIVE_PASSRESOURCEUSAGETRACKER_H_
|
|
|
|
|
|
|
|
#include "dawn_native/PassResourceUsage.h"
|
|
|
|
|
|
|
|
#include "dawn_native/dawn_platform.h"
|
|
|
|
|
|
|
|
#include <map>
|
|
|
|
|
|
|
|
namespace dawn_native {
|
|
|
|
|
2021-05-05 19:55:23 +00:00
|
|
|
class BindGroupBase;
|
2019-08-08 17:21:39 +00:00
|
|
|
class BufferBase;
|
2021-04-07 05:39:21 +00:00
|
|
|
class QuerySetBase;
|
2019-08-08 17:21:39 +00:00
|
|
|
class TextureBase;
|
|
|
|
|
2021-04-07 05:39:21 +00:00
|
|
|
using QueryAvailabilityMap = std::map<QuerySetBase*, std::vector<bool>>;
|
|
|
|
|
2021-05-05 19:55:23 +00:00
|
|
|
// Helper class to build SyncScopeResourceUsages
|
|
|
|
class SyncScopeUsageTracker {
|
2019-08-08 17:21:39 +00:00
|
|
|
public:
|
2019-10-23 11:57:41 +00:00
|
|
|
void BufferUsedAs(BufferBase* buffer, wgpu::BufferUsage usage);
|
2020-05-04 17:10:49 +00:00
|
|
|
void TextureViewUsedAs(TextureViewBase* texture, wgpu::TextureUsage usage);
|
2021-05-05 15:41:13 +00:00
|
|
|
void AddTextureUsage(TextureBase* texture, const TextureSubresourceUsage& textureUsage);
|
2021-05-05 19:55:23 +00:00
|
|
|
|
|
|
|
// Walks the bind groups and tracks all its resources.
|
|
|
|
void AddBindGroup(BindGroupBase* group);
|
2019-08-08 17:21:39 +00:00
|
|
|
|
|
|
|
// Returns the per-pass usage for use by backends for APIs with explicit barriers.
|
2021-05-05 19:55:23 +00:00
|
|
|
SyncScopeResourceUsage AcquireSyncScopeUsage();
|
2019-08-08 17:21:39 +00:00
|
|
|
|
|
|
|
private:
|
2019-10-23 11:57:41 +00:00
|
|
|
std::map<BufferBase*, wgpu::BufferUsage> mBufferUsages;
|
2021-05-05 15:41:13 +00:00
|
|
|
std::map<TextureBase*, TextureSubresourceUsage> mTextureUsages;
|
2021-05-05 19:55:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// Helper class to build ComputePassResourceUsages
|
|
|
|
class ComputePassResourceUsageTracker : public SyncScopeUsageTracker {
|
|
|
|
public:
|
|
|
|
ComputePassResourceUsage AcquireResourceUsage();
|
|
|
|
|
|
|
|
private:
|
|
|
|
// Hide AcquireSyncScopeUsage since users of this class should use AcquireResourceUsage
|
|
|
|
// instead.
|
|
|
|
using SyncScopeUsageTracker::AcquireSyncScopeUsage;
|
|
|
|
};
|
|
|
|
|
|
|
|
// Helper class to build RenderPassResourceUsages
|
|
|
|
class RenderPassResourceUsageTracker : public SyncScopeUsageTracker {
|
|
|
|
public:
|
|
|
|
void TrackQueryAvailability(QuerySetBase* querySet, uint32_t queryIndex);
|
|
|
|
const QueryAvailabilityMap& GetQueryAvailabilityMap() const;
|
|
|
|
|
|
|
|
RenderPassResourceUsage AcquireResourceUsage();
|
|
|
|
|
|
|
|
private:
|
|
|
|
// Hide AcquireSyncScopeUsage since users of this class should use AcquireResourceUsage
|
|
|
|
// instead.
|
|
|
|
using SyncScopeUsageTracker::AcquireSyncScopeUsage;
|
|
|
|
|
|
|
|
// Tracks queries used in the render pass to validate that they aren't written twice.
|
2021-04-07 05:39:21 +00:00
|
|
|
QueryAvailabilityMap mQueryAvailabilities;
|
2019-08-08 17:21:39 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dawn_native
|
|
|
|
|
|
|
|
#endif // DAWNNATIVE_PASSRESOURCEUSAGETRACKER_H_
|