Remove stray reference to GetDefaultQueue

Bug: dawn:22
Change-Id: Ia5c1f552317d9c35a9c09fe4e0684593cee9cacf
Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/62940
Auto-Submit: Corentin Wallez <cwallez@chromium.org>
Reviewed-by: Jiawei Shao <jiawei.shao@intel.com>
Commit-Queue: Corentin Wallez <cwallez@chromium.org>
This commit is contained in:
Corentin Wallez 2021-08-27 07:51:00 +00:00 committed by Dawn LUCI CQ
parent c31b16f5dc
commit 378ea27f39
3 changed files with 0 additions and 7 deletions

View File

@ -167,7 +167,6 @@
"BufferUnmap",
"DeviceCreateComputePipeline",
"DeviceCreateErrorBuffer",
"DeviceGetDefaultQueue",
"DeviceGetQueue",
"DeviceInjectError",
"DevicePushErrorScope"

View File

@ -229,10 +229,6 @@ namespace dawn_wire { namespace client {
return ToAPI(mQueue);
}
WGPUQueue Device::GetDefaultQueue() {
return GetQueue();
}
// TODO(dawn:800): Once the deprecated computeStage field is removed this method will no longer
// be needed and DeviceCreateComputePipeline can be removed from client_handwritten_commands in
// dawn_wire.json

View File

@ -64,8 +64,6 @@ namespace dawn_wire { namespace client {
WGPUCreatePipelineAsyncStatus status,
const char* message);
// TODO(dawn:22): Remove once the deprecation period is finished.
WGPUQueue GetDefaultQueue();
WGPUQueue GetQueue();
void CancelCallbacksForDisconnect() override;