summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/modules/webgpu/gpu_vertex_state_descriptor.idl
blob: 7073c0f627daf1c23acfda23c28bb44d7ee3e466 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// 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/

dictionary GPUVertexStateDescriptor {
    GPUIndexFormat indexFormat;
    // TODO(crbug.com/951629): Make this a sequence of nullables.
    object vertexBuffers; // We validate this is an array of nullable GPUVertexBufferLayoutDescriptor
};

enum GPUIndexFormat {
    "uint16",
    "uint32"
};