blob: 4c9a6ca3fb70e3e98dea41dec81eb756461584d2 [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
enum WebGPUPowerPreference {
"default",
"low-power",
"high-performance",
};
dictionary WebGPUAdapterDescriptor {
WebGPUPowerPreference powerPreference = "default";
};