#ifndef GPU_COMMAND_BUFFER_CLIENT_WEBGPU_INTERFACE_STUB_H_
#define GPU_COMMAND_BUFFER_CLIENT_WEBGPU_INTERFACE_STUB_H_
#include "gpu/command_buffer/client/webgpu_interface.h"
namespace gpu {
namespace webgpu {
class WebGPUInterfaceStub : public WebGPUInterface {
public:
WebGPUInterfaceStub();
~WebGPUInterfaceStub() override;
void GenSyncTokenCHROMIUM(GLbyte* sync_token) override;
void GenUnverifiedSyncTokenCHROMIUM(GLbyte* sync_token) override;
void VerifySyncTokensCHROMIUM(GLbyte** sync_tokens, GLsizei count) override;
void WaitSyncTokenCHROMIUM(const GLbyte* sync_token) override;
void ShallowFlushCHROMIUM() override;
scoped_refptr<APIChannel> GetAPIChannel() const override;
void FlushCommands() override;
bool EnsureAwaitingFlush() override;
void FlushAwaitingCommands() override;
ReservedTexture ReserveTexture(
WGPUDevice device,
const WGPUTextureDescriptor* optionalDesc) override;
WGPUDevice DeprecatedEnsureDefaultDeviceSync() override;
void AssociateMailbox(GLuint device_id,
GLuint device_generation,
GLuint id,
GLuint generation,
GLuint usage,
const WGPUTextureFormat* view_formats,
GLuint view_format_count,
MailboxFlags flags,
const Mailbox& mailbox) override;
#include "gpu/command_buffer/client/webgpu_interface_stub_autogen.h"
protected:
DawnProcTable* procs();
private:
scoped_refptr<APIChannel> api_channel_;
};
}
}
#endif