File size: 326 Bytes
9a14526
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
// @flow
import {createLayout} from '../../util/struct_array';

const lineLayoutAttributes = createLayout([
    {name: 'a_pos_normal', components: 2, type: 'Int16'},
    {name: 'a_data', components: 4, type: 'Uint8'}
], 4);

export default lineLayoutAttributes;
export const {members, size, alignment} = lineLayoutAttributes;