mapbox-gl
Version:
A WebGL interactive maps library
11 lines (7 loc) • 305 B
JavaScript
// @flow
import {createLayout} from '../../util/struct_array.js';
import type {StructArrayLayout} from '../../util/struct_array.js';
const dashAttributes: StructArrayLayout = createLayout([
{name: 'a_dash', components: 4, type: 'Uint16'} // [x, y, width, unused]
]);
export default dashAttributes;