mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-07-16 10:05:55 +00:00
Updated interface design is at https://bugs.chromium.org/p/dawn/issues/detail?id=773#c21 Prelanding CL to avoid breaking change. The proposed usage is at https://dawn-review.googlesource.com/c/dawn/+/51164 Bug: dawn:773 Change-Id: If27396e60574b4a52fcda60e111bad33c9d63563 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/54140 Reviewed-by: Corentin Wallez <cwallez@chromium.org> Reviewed-by: Austin Eng <enga@chromium.org> Commit-Queue: Shrek Shao <shrekshao@google.com>
75 lines
2.4 KiB
C++
75 lines
2.4 KiB
C++
// Copyright 2019 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.
|
|
|
|
#include "dawn_wire/WireClient.h"
|
|
#include "dawn_wire/client/Client.h"
|
|
|
|
namespace dawn_wire {
|
|
|
|
WireClient::WireClient(const WireClientDescriptor& descriptor)
|
|
: mImpl(new client::Client(descriptor.serializer, descriptor.memoryTransferService)) {
|
|
}
|
|
|
|
WireClient::~WireClient() {
|
|
mImpl.reset();
|
|
}
|
|
|
|
const volatile char* WireClient::HandleCommands(const volatile char* commands, size_t size) {
|
|
return mImpl->HandleCommands(commands, size);
|
|
}
|
|
|
|
ReservedTexture WireClient::ReserveTexture(WGPUDevice device) {
|
|
return mImpl->ReserveTexture(device);
|
|
}
|
|
|
|
ReservedSwapChain WireClient::ReserveSwapChain(WGPUDevice device) {
|
|
return mImpl->ReserveSwapChain(device);
|
|
}
|
|
|
|
ReservedDevice WireClient::ReserveDevice() {
|
|
return mImpl->ReserveDevice();
|
|
}
|
|
|
|
void WireClient::ReclaimTextureReservation(const ReservedTexture& reservation) {
|
|
mImpl->ReclaimTextureReservation(reservation);
|
|
}
|
|
|
|
void WireClient::ReclaimSwapChainReservation(const ReservedSwapChain& reservation) {
|
|
mImpl->ReclaimSwapChainReservation(reservation);
|
|
}
|
|
|
|
void WireClient::ReclaimDeviceReservation(const ReservedDevice& reservation) {
|
|
mImpl->ReclaimDeviceReservation(reservation);
|
|
}
|
|
|
|
void WireClient::Disconnect() {
|
|
mImpl->Disconnect();
|
|
}
|
|
|
|
namespace client {
|
|
MemoryTransferService::MemoryTransferService() = default;
|
|
|
|
MemoryTransferService::~MemoryTransferService() = default;
|
|
|
|
MemoryTransferService::ReadHandle::ReadHandle() = default;
|
|
|
|
MemoryTransferService::ReadHandle::~ReadHandle() = default;
|
|
|
|
MemoryTransferService::WriteHandle::WriteHandle() = default;
|
|
|
|
MemoryTransferService::WriteHandle::~WriteHandle() = default;
|
|
} // namespace client
|
|
|
|
} // namespace dawn_wire
|