mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-05-16 04:11:25 +00:00
This utility will be used to run tests on the wire in both the end2end tests and the unit tests. Bug: dawn:654 Change-Id: I5ac0b2385efe32ee1c4af033b01198f890c0f7dd Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/38500 Commit-Queue: Austin Eng <enga@chromium.org> Reviewed-by: Stephen White <senorblanco@chromium.org>
45 lines
1.4 KiB
C++
45 lines
1.4 KiB
C++
// Copyright 2021 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 UTILS_WIREHELPER_H_
|
|
#define UTILS_WIREHELPER_H_
|
|
|
|
#include "dawn/webgpu_cpp.h"
|
|
|
|
#include <cstdint>
|
|
#include <memory>
|
|
|
|
namespace utils {
|
|
|
|
class WireHelper {
|
|
public:
|
|
virtual ~WireHelper();
|
|
|
|
// Registers the device on the wire, if present.
|
|
// Returns a pair of the client device and backend device.
|
|
// The function should take ownership of |backendDevice|.
|
|
virtual std::pair<wgpu::Device, WGPUDevice> RegisterDevice(WGPUDevice backendDevice) = 0;
|
|
|
|
virtual void BeginWireTrace(const char* name) = 0;
|
|
|
|
virtual bool FlushClient() = 0;
|
|
virtual bool FlushServer() = 0;
|
|
};
|
|
|
|
std::unique_ptr<WireHelper> CreateWireHelper(bool useWire, const char* wireTraceDir = nullptr);
|
|
|
|
} // namespace utils
|
|
|
|
#endif // UTILS_WIREHELPER_H_
|