Skip to content

Commit

Permalink
Merge pull request #57 from Eessh/patch-1
Browse files Browse the repository at this point in the history
Fixed typo in setting `enable_immediate_error_handling` for Dawn
  • Loading branch information
eliemichel committed Apr 25, 2024
2 parents 48dfae8 + d212772 commit 014619c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions next/getting-started/adapter-and-device/the-device.md
Original file line number Diff line number Diff line change
Expand Up @@ -353,8 +353,8 @@ desc.nextInChain = nullptr;
WGPUDawnTogglesDescriptor toggles;
toggles.chain.next = nullptr;
toggles.chain.sType = WGPUSType_DawnTogglesDescriptor;
toggles.disabledToggleCount = 0;
toggles.enabledToggleCount = 1;
toggles.disabledTogglesCount = 0;
toggles.enabledTogglesCount = 1;
const char* toggleName = "enable_immediate_error_handling";
toggles.enabledToggles = &toggleName;
Expand Down

0 comments on commit 014619c

Please sign in to comment.