blob: 80254c58eab991502c3ef63c0f54ba1a91b1bca6 [file] [log] [blame]
// Copyright 2019 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.
// https://gpuweb.github.io/gpuweb/
typedef [EnforceRange] unsigned long GPUColorWriteFlags;
[
Exposed(Window WebGPU, Worker WebGPU)
] interface GPUColorWrite {
const unsigned long RED = 1;
const unsigned long GREEN = 2;
const unsigned long BLUE = 4;
const unsigned long ALPHA = 8;
const unsigned long ALL = 15;
};