mirror of
https://github.com/ocornut/imgui.git
synced 2025-04-05 05:25:08 +00:00
Backends: WebGPU: Avoid using -1u literal (#7436)
This commit is contained in:
parent
868facff9d
commit
8be48a44f7
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@ struct ImGui_ImplWGPU_InitInfo
|
|||
ImGui_ImplWGPU_InitInfo()
|
||||
{
|
||||
PipelineMultisampleState.count = 1;
|
||||
PipelineMultisampleState.mask = -1u;
|
||||
PipelineMultisampleState.mask = UINT32_MAX;
|
||||
PipelineMultisampleState.alphaToCoverageEnabled = false;
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue