2017-06-09 00:25:57 +00:00
|
|
|
// 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.
|
|
|
|
|
2017-07-06 18:41:13 +00:00
|
|
|
#ifndef BACKEND_COMMANDBUFFERSTATETRACKER_H
|
|
|
|
#define BACKEND_COMMANDBUFFERSTATETRACKER_H
|
2017-06-09 00:25:57 +00:00
|
|
|
|
2017-07-06 18:41:13 +00:00
|
|
|
#include "backend/CommandBuffer.h"
|
|
|
|
#include "common/Constants.h"
|
2017-06-09 00:25:57 +00:00
|
|
|
|
2017-07-07 23:06:14 +00:00
|
|
|
#include <array>
|
2017-06-09 00:25:57 +00:00
|
|
|
#include <bitset>
|
|
|
|
#include <map>
|
|
|
|
#include <set>
|
|
|
|
|
|
|
|
namespace backend {
|
2018-07-10 16:03:22 +00:00
|
|
|
|
2017-06-09 00:25:57 +00:00
|
|
|
class CommandBufferStateTracker {
|
2017-11-24 18:59:42 +00:00
|
|
|
public:
|
|
|
|
explicit CommandBufferStateTracker(CommandBufferBuilder* builder);
|
|
|
|
|
|
|
|
// Non-state-modifying validation functions
|
|
|
|
bool ValidateCanCopy() const;
|
|
|
|
bool ValidateCanUseBufferAs(BufferBase* buffer, nxt::BufferUsageBit usage) const;
|
|
|
|
bool ValidateCanUseTextureAs(TextureBase* texture, nxt::TextureUsageBit usage) const;
|
|
|
|
bool ValidateCanDispatch();
|
|
|
|
bool ValidateCanDrawArrays();
|
|
|
|
bool ValidateCanDrawElements();
|
|
|
|
|
|
|
|
// State-modifying methods
|
2018-07-04 13:20:19 +00:00
|
|
|
void EndPass();
|
2018-05-11 17:04:44 +00:00
|
|
|
bool BeginRenderPass(RenderPassDescriptorBase* info);
|
2017-11-24 18:59:42 +00:00
|
|
|
bool SetComputePipeline(ComputePipelineBase* pipeline);
|
|
|
|
bool SetRenderPipeline(RenderPipelineBase* pipeline);
|
|
|
|
bool SetBindGroup(uint32_t index, BindGroupBase* bindgroup);
|
|
|
|
bool SetIndexBuffer(BufferBase* buffer);
|
|
|
|
bool SetVertexBuffer(uint32_t index, BufferBase* buffer);
|
|
|
|
bool TransitionBufferUsage(BufferBase* buffer, nxt::BufferUsageBit usage);
|
|
|
|
bool TransitionTextureUsage(TextureBase* texture, nxt::TextureUsageBit usage);
|
|
|
|
bool EnsureTextureUsage(TextureBase* texture, nxt::TextureUsageBit usage);
|
|
|
|
|
|
|
|
// These collections are copied to the CommandBuffer at build time. These pointers will
|
|
|
|
// remain valid since they are referenced by the bind groups which are referenced by this
|
|
|
|
// command buffer.
|
|
|
|
std::set<BufferBase*> mBuffersTransitioned;
|
|
|
|
std::set<TextureBase*> mTexturesTransitioned;
|
|
|
|
|
|
|
|
private:
|
|
|
|
enum ValidationAspect {
|
2018-07-04 13:20:19 +00:00
|
|
|
VALIDATION_ASPECT_PIPELINE,
|
2017-11-24 18:59:42 +00:00
|
|
|
VALIDATION_ASPECT_BIND_GROUPS,
|
|
|
|
VALIDATION_ASPECT_VERTEX_BUFFERS,
|
|
|
|
VALIDATION_ASPECT_INDEX_BUFFER,
|
|
|
|
|
|
|
|
VALIDATION_ASPECT_COUNT
|
|
|
|
};
|
|
|
|
using ValidationAspects = std::bitset<VALIDATION_ASPECT_COUNT>;
|
|
|
|
|
|
|
|
// Usage helper functions
|
|
|
|
bool BufferHasGuaranteedUsageBit(BufferBase* buffer, nxt::BufferUsageBit usage) const;
|
|
|
|
bool TextureHasGuaranteedUsageBit(TextureBase* texture, nxt::TextureUsageBit usage) const;
|
|
|
|
bool IsInternalTextureTransitionPossible(TextureBase* texture,
|
|
|
|
nxt::TextureUsageBit usage) const;
|
|
|
|
bool IsExplicitTextureTransitionPossible(TextureBase* texture,
|
|
|
|
nxt::TextureUsageBit usage) const;
|
|
|
|
|
|
|
|
// Queries for lazily evaluated aspects
|
|
|
|
bool RecomputeHaveAspectBindGroups();
|
|
|
|
bool RecomputeHaveAspectVertexBuffers();
|
|
|
|
|
|
|
|
bool HavePipeline() const;
|
|
|
|
bool ValidateBindGroupUsages(BindGroupBase* group) const;
|
|
|
|
bool RevalidateCanDraw();
|
|
|
|
|
|
|
|
void SetPipelineCommon(PipelineBase* pipeline);
|
|
|
|
|
|
|
|
CommandBufferBuilder* mBuilder;
|
|
|
|
|
|
|
|
ValidationAspects mAspects;
|
|
|
|
|
|
|
|
std::bitset<kMaxBindGroups> mBindgroupsSet;
|
|
|
|
std::array<BindGroupBase*, kMaxBindGroups> mBindgroups = {};
|
|
|
|
std::bitset<kMaxVertexInputs> mInputsSet;
|
|
|
|
PipelineBase* mLastPipeline = nullptr;
|
|
|
|
RenderPipelineBase* mLastRenderPipeline = nullptr;
|
|
|
|
|
|
|
|
std::map<BufferBase*, nxt::BufferUsageBit> mMostRecentBufferUsages;
|
|
|
|
std::map<TextureBase*, nxt::TextureUsageBit> mMostRecentTextureUsages;
|
2018-07-04 13:20:19 +00:00
|
|
|
std::set<TextureBase*> mTexturesAttached;
|
2017-06-09 00:25:57 +00:00
|
|
|
};
|
2018-07-10 16:03:22 +00:00
|
|
|
|
2017-11-24 18:59:42 +00:00
|
|
|
} // namespace backend
|
2017-06-09 00:25:57 +00:00
|
|
|
|
2017-11-24 18:59:42 +00:00
|
|
|
#endif // BACKEND_COMMANDBUFFERSTATETRACKER_H
|