From 06294ba012e805bf4eb215307e60a417d85e2a3d Mon Sep 17 00:00:00 2001 From: Corentin Wallez Date: Thu, 25 May 2023 17:02:50 +0000 Subject: [PATCH] Add wgpu::RenderBundle::SetLabel It was missing on just this object (and adapter/instance but that's expected). Bug: None Change-Id: I865609b8194c872c16ad5590eaf0461751a56eab Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/134502 Commit-Queue: Corentin Wallez Reviewed-by: Austin Eng Kokoro: Kokoro --- dawn.json | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/dawn.json b/dawn.json index 3d8f070983..fe3bf9eb94 100644 --- a/dawn.json +++ b/dawn.json @@ -1831,7 +1831,16 @@ }, "render bundle": { - "category": "object" + "category": "object", + "methods": [ + { + "name": "set label", + "returns": "void", + "args": [ + {"name": "label", "type": "char", "annotation": "const*", "length": "strlen"} + ] + } + ] }, "render bundle encoder": {