blob: 7073c0f627daf1c23acfda23c28bb44d7ee3e466 [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/
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"
};