mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-06-11 09:03:28 +00:00
Bug: dawn:442 Change-Id: Ic4c29eed51984d367dc7fd6055e33d26bfc7faed Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/28041 Commit-Queue: Austin Eng <enga@chromium.org> Reviewed-by: Corentin Wallez <cwallez@chromium.org>
70 lines
2.4 KiB
C++
70 lines
2.4 KiB
C++
// Copyright 2017 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_COMMANDBUFFERSTATETRACKER_H
|
|
#define DAWNNATIVE_COMMANDBUFFERSTATETRACKER_H
|
|
|
|
#include "common/Constants.h"
|
|
#include "common/ityp_array.h"
|
|
#include "common/ityp_bitset.h"
|
|
#include "dawn_native/BindingInfo.h"
|
|
#include "dawn_native/Error.h"
|
|
#include "dawn_native/Forward.h"
|
|
|
|
#include <map>
|
|
#include <set>
|
|
|
|
namespace dawn_native {
|
|
|
|
class CommandBufferStateTracker {
|
|
public:
|
|
// Non-state-modifying validation functions
|
|
MaybeError ValidateCanDispatch();
|
|
MaybeError ValidateCanDraw();
|
|
MaybeError ValidateCanDrawIndexed();
|
|
|
|
// State-modifying methods
|
|
void SetComputePipeline(ComputePipelineBase* pipeline);
|
|
void SetRenderPipeline(RenderPipelineBase* pipeline);
|
|
void SetBindGroup(BindGroupIndex index, BindGroupBase* bindgroup);
|
|
void SetIndexBuffer(wgpu::IndexFormat format);
|
|
void SetVertexBuffer(VertexBufferSlot slot);
|
|
|
|
static constexpr size_t kNumAspects = 4;
|
|
using ValidationAspects = std::bitset<kNumAspects>;
|
|
|
|
private:
|
|
MaybeError ValidateOperation(ValidationAspects requiredAspects);
|
|
void RecomputeLazyAspects(ValidationAspects aspects);
|
|
MaybeError CheckMissingAspects(ValidationAspects aspects);
|
|
|
|
void SetPipelineCommon(PipelineBase* pipeline);
|
|
|
|
ValidationAspects mAspects;
|
|
|
|
ityp::array<BindGroupIndex, BindGroupBase*, kMaxBindGroups> mBindgroups = {};
|
|
ityp::bitset<VertexBufferSlot, kMaxVertexBuffers> mVertexBufferSlotsUsed;
|
|
bool mIndexBufferSet = false;
|
|
wgpu::IndexFormat mIndexFormat;
|
|
|
|
PipelineLayoutBase* mLastPipelineLayout = nullptr;
|
|
RenderPipelineBase* mLastRenderPipeline = nullptr;
|
|
|
|
const RequiredBufferSizes* mMinBufferSizes = nullptr;
|
|
};
|
|
|
|
} // namespace dawn_native
|
|
|
|
#endif // DAWNNATIVE_COMMANDBUFFERSTATETRACKER_H
|