Skip to content

Commit

Permalink
Add missing unimplemented symbols
Browse files Browse the repository at this point in the history
  • Loading branch information
eliemichel committed Nov 15, 2024
1 parent e36359f commit 6eb8945
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions src/unimplemented.rs
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,29 @@ pub extern "C" fn wgpuDeviceCreateRenderPipelineAsync(
unimplemented!();
}

#[no_mangle]
pub extern "C" fn wgpuDeviceGetAdapterInfo(_device: native::WGPUDevice) -> native::WGPUAdapterInfo {
unimplemented!();
}

#[no_mangle]
pub extern "C" fn wgpuDeviceGetLostFuture(_device: native::WGPUDevice) -> native::WGPUFuture {
unimplemented!();
}

#[no_mangle]
pub extern "C" fn wgpuDeviceSetLabel(_device: native::WGPUDevice, _label: native::WGPUStringView) {
unimplemented!();
}

#[no_mangle]
pub extern "C" fn wgpuInstanceGetWGSLLanguageFeatures(
_instance: native::WGPUInstance,
_features: *mut native::WGPUSupportedWGSLLanguageFeatures,
) -> native::WGPUStatus {
unimplemented!();
}

#[no_mangle]
pub extern "C" fn wgpuInstanceHasWGSLLanguageFeature(
_instance: native::WGPUInstance,
Expand Down Expand Up @@ -176,6 +194,13 @@ pub extern "C" fn wgpuShaderModuleSetLabel(
unimplemented!();
}

#[no_mangle]
pub extern "C" fn wgpuSupportedWGSLLanguageFeaturesFreeMembers(
_supported_wgsl_language_features: native::WGPUSupportedWGSLLanguageFeatures,
) {
unimplemented!();
}

#[no_mangle]
pub extern "C" fn wgpuSurfaceSetLabel(
_surface: native::WGPUSurface,
Expand Down

0 comments on commit 6eb8945

Please sign in to comment.