2018-07-18 09:40:26 +00:00
|
|
|
// Copyright 2017 The Dawn Authors
|
2017-06-09 00:25:57 +00:00
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
|
2018-07-24 14:42:33 +00:00
|
|
|
#ifndef DAWNNATIVE_COMMANDBUFFERSTATETRACKER_H
|
|
|
|
#define DAWNNATIVE_COMMANDBUFFERSTATETRACKER_H
|
2017-06-09 00:25:57 +00:00
|
|
|
|
2017-07-06 18:41:13 +00:00
|
|
|
#include "common/Constants.h"
|
2019-02-20 11:46:16 +00:00
|
|
|
#include "dawn_native/Error.h"
|
|
|
|
#include "dawn_native/Forward.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>
|
|
|
|
|
2018-07-24 14:45:45 +00:00
|
|
|
namespace dawn_native {
|
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:
|
|
|
|
// Non-state-modifying validation functions
|
2018-07-16 16:20:09 +00:00
|
|
|
MaybeError ValidateCanDispatch();
|
2018-12-10 05:20:19 +00:00
|
|
|
MaybeError ValidateCanDraw();
|
|
|
|
MaybeError ValidateCanDrawIndexed();
|
2017-11-24 18:59:42 +00:00
|
|
|
|
|
|
|
// State-modifying methods
|
2018-07-16 16:20:09 +00:00
|
|
|
void SetComputePipeline(ComputePipelineBase* pipeline);
|
|
|
|
void SetRenderPipeline(RenderPipelineBase* pipeline);
|
2018-07-09 13:15:07 +00:00
|
|
|
void SetBindGroup(uint32_t index, BindGroupBase* bindgroup);
|
2018-07-18 16:23:08 +00:00
|
|
|
void SetIndexBuffer();
|
|
|
|
void SetVertexBuffer(uint32_t start, uint32_t count);
|
2017-11-24 18:59:42 +00:00
|
|
|
|
2018-07-18 16:23:08 +00:00
|
|
|
static constexpr size_t kNumAspects = 4;
|
|
|
|
using ValidationAspects = std::bitset<kNumAspects>;
|
2017-11-24 18:59:42 +00:00
|
|
|
|
2018-07-18 16:23:08 +00:00
|
|
|
private:
|
|
|
|
MaybeError ValidateOperation(ValidationAspects requiredAspects);
|
|
|
|
void RecomputeLazyAspects(ValidationAspects aspects);
|
|
|
|
MaybeError GenerateAspectError(ValidationAspects aspects);
|
2017-11-24 18:59:42 +00:00
|
|
|
|
|
|
|
void SetPipelineCommon(PipelineBase* pipeline);
|
|
|
|
|
|
|
|
ValidationAspects mAspects;
|
|
|
|
|
|
|
|
std::array<BindGroupBase*, kMaxBindGroups> mBindgroups = {};
|
2019-05-22 22:46:32 +00:00
|
|
|
std::bitset<kMaxVertexBuffers> mInputsSet;
|
2018-07-18 16:23:08 +00:00
|
|
|
|
|
|
|
PipelineLayoutBase* mLastPipelineLayout = nullptr;
|
2017-11-24 18:59:42 +00:00
|
|
|
RenderPipelineBase* mLastRenderPipeline = nullptr;
|
2017-06-09 00:25:57 +00:00
|
|
|
};
|
2018-07-10 16:03:22 +00:00
|
|
|
|
2018-07-24 14:45:45 +00:00
|
|
|
} // namespace dawn_native
|
2017-06-09 00:25:57 +00:00
|
|
|
|
2018-07-24 14:42:33 +00:00
|
|
|
#endif // DAWNNATIVE_COMMANDBUFFERSTATETRACKER_H
|