blob: 71a392fabf9be7e4d0f11103bff2e6c401bce2db [file] [log] [blame]
// Copyright 2022 The IREE Authors
//
// Licensed under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
#ifndef IREE_HAL_DRIVERS_WEBGPU_PLATFORM_EMSCRIPTEN_EMSCRIPTEN_DRIVER_H_
#define IREE_HAL_DRIVERS_WEBGPU_PLATFORM_EMSCRIPTEN_EMSCRIPTEN_DRIVER_H_
#include "experimental/webgpu/api.h"
#include "experimental/webgpu/platform/webgpu.h"
#include "iree/base/api.h"
#include "iree/hal/api.h"
#ifdef __cplusplus
extern "C" {
#endif // __cplusplus
iree_status_t iree_hal_webgpu_emscripten_driver_create(
iree_string_view_t identifier,
const iree_hal_webgpu_driver_options_t* options,
iree_allocator_t host_allocator, iree_hal_driver_t** out_driver);
#ifdef __cplusplus
} // extern "C"
#endif // __cplusplus
#endif // IREE_HAL_DRIVERS_WEBGPU_PLATFORM_EMSCRIPTEN_EMSCRIPTEN_DRIVER_H_