blob: 1ad2c8c8af865b08cc1caaed42f63b268729d2e1 [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 GPUTextureUsageFlags;
[
Exposed(Window WebGPU, Worker WebGPU)
] interface GPUTextureUsage {
const unsigned long COPY_SRC = 1;
const unsigned long COPY_DST = 2;
const unsigned long SAMPLED = 4;
const unsigned long STORAGE = 8;
const unsigned long RENDER_ATTACHMENT = 16;
// Deprecated.
static readonly attribute unsigned long OUTPUT_ATTACHMENT;
};