mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-08-15 08:29:24 +00:00
All the buffer backend files had basically the same implemenations of MapRequestTracker and the tracker was owned by device backends. This refactor puts MapRequestTracker into its own file and has the tracker be owned by DeviceBase and BufferBase. Bug: dawn:400 Change-Id: Id28422b575e9c04d4435d5f119e0ffe08c2d1ce8 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/21760 Commit-Queue: Natasha Lee <natlee@microsoft.com> Reviewed-by: Austin Eng <enga@chromium.org>
44 lines
1.3 KiB
C++
44 lines
1.3 KiB
C++
// Copyright 2020 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_MAPREQUESTTRACKER_H_
|
|
#define DAWNNATIVE_MAPREQUESTTRACKER_H_
|
|
|
|
#include "common/SerialQueue.h"
|
|
#include "dawn_native/Device.h"
|
|
|
|
namespace dawn_native {
|
|
|
|
class MapRequestTracker {
|
|
public:
|
|
MapRequestTracker(DeviceBase* device);
|
|
~MapRequestTracker();
|
|
|
|
void Track(BufferBase* buffer, uint32_t mapSerial, bool isWrite);
|
|
void Tick(Serial finishedSerial);
|
|
|
|
private:
|
|
DeviceBase* mDevice;
|
|
|
|
struct Request {
|
|
Ref<BufferBase> buffer;
|
|
uint32_t mapSerial;
|
|
bool isWrite;
|
|
};
|
|
SerialQueue<Request> mInflightRequests;
|
|
};
|
|
|
|
} // namespace dawn_native
|
|
|
|
#endif // DAWNNATIVE_MAPREQUESTTRACKER_H
|