From e052683e3f092b203597d6c21182a4e5bd3b637d Mon Sep 17 00:00:00 2001 From: Jiawei Shao Date: Tue, 8 Nov 2022 15:11:31 +0000 Subject: [PATCH] Remove two unused function declarations in wire::client::Device Bug: dawn:1586 Change-Id: Ic3a7bdedc62ff6765a559f94a7ad379741687fed Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/109080 Commit-Queue: Austin Eng Reviewed-by: Austin Eng Kokoro: Kokoro --- src/dawn/wire/client/Device.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/dawn/wire/client/Device.h b/src/dawn/wire/client/Device.h index 6e021feba9..90f3edae64 100644 --- a/src/dawn/wire/client/Device.h +++ b/src/dawn/wire/client/Device.h @@ -39,11 +39,9 @@ class Device final : public ObjectBase { void SetLoggingCallback(WGPULoggingCallback errorCallback, void* errorUserdata); void SetDeviceLostCallback(WGPUDeviceLostCallback errorCallback, void* errorUserdata); void InjectError(WGPUErrorType type, const char* message); - void PushErrorScope(WGPUErrorFilter filter); bool PopErrorScope(WGPUErrorCallback callback, void* userdata); WGPUBuffer CreateBuffer(const WGPUBufferDescriptor* descriptor); WGPUBuffer CreateErrorBuffer(); - WGPUComputePipeline CreateComputePipeline(WGPUComputePipelineDescriptor const* descriptor); void CreateComputePipelineAsync(WGPUComputePipelineDescriptor const* descriptor, WGPUCreateComputePipelineAsyncCallback callback, void* userdata);