Cleanup old/deprecated wire and native APIs

Bug: none
Change-Id: Idf9a00d8dc675e1fbc83554c487edcb2dda498c8
Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/30001
Reviewed-by: Austin Eng <enga@chromium.org>
Commit-Queue: Austin Eng <enga@chromium.org>
This commit is contained in:
Austin Eng
2020-10-16 15:21:16 +00:00
committed by Commit Bot service account
parent 2931c429c9
commit 875091308b
6 changed files with 8 additions and 22 deletions

View File

@@ -152,12 +152,9 @@ wgpu::Device CreateCppDawnDevice() {
clientDesc.serializer = c2sBuf;
wireClient = new dawn_wire::WireClient(clientDesc);
WGPUDevice clientDevice = wireClient->GetDevice();
DawnProcTable clientProcs = dawn_wire::WireClient::GetProcs();
cDevice = wireClient->GetDevice();
procs = dawn_wire::client::GetProcs();
s2cBuf->SetHandler(wireClient);
procs = clientProcs;
cDevice = clientDevice;
} break;
}