Skip to content

Commit 58c051d

Browse files
MediaPipe Teamcopybara-github
MediaPipe Team
authored andcommitted
Add CreateWgslShader utility.
PiperOrigin-RevId: 733667613
1 parent d0d62bb commit 58c051d

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

mediapipe/gpu/webgpu/webgpu_utils.cc

+10
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,16 @@ void PadElementDepth(uint8_t* src_buffer, uint8_t* dst_buffer, int num_elements,
4646

4747
} // namespace
4848

49+
wgpu::ShaderModule CreateWgslShader(wgpu::Device device, const char* const code,
50+
const char* label) {
51+
wgpu::ShaderModuleWGSLDescriptor wgsl;
52+
wgsl.code = code;
53+
wgpu::ShaderModuleDescriptor desc;
54+
desc.nextInChain = &wgsl;
55+
desc.label = label;
56+
return device.CreateShaderModule(&desc);
57+
}
58+
4959
absl::StatusOr<uint32_t> WebGpuTextureFormatBytesPerPixel(
5060
wgpu::TextureFormat format) {
5161
switch (format) {

mediapipe/gpu/webgpu/webgpu_utils.h

+3
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@
99

1010
namespace mediapipe {
1111

12+
wgpu::ShaderModule CreateWgslShader(wgpu::Device device, const char* code,
13+
const char* label);
14+
1215
absl::StatusOr<uint32_t> WebGpuTextureFormatBytesPerPixel(
1316
wgpu::TextureFormat format);
1417
absl::StatusOr<uint32_t> WebGpuTextureFormatDepth(wgpu::TextureFormat format);

0 commit comments

Comments
 (0)